summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-wpnench.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-05 12:14:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-05 12:14:09 +0200
commitc41419c4f47bbf0737d3fedf58128c835d2c4e3b (patch)
tree764ae18c107df39fd90af718922036bd245561ca /crawl-ref/source/spl-wpnench.cc
parentb80adef8882143cad34f3c8bcc9a8ccbd4440223 (diff)
downloadcrawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.tar.gz
crawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.zip
Drop parentheses around scalar values in "return".
Diffstat (limited to 'crawl-ref/source/spl-wpnench.cc')
-rw-r--r--crawl-ref/source/spl-wpnench.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/spl-wpnench.cc b/crawl-ref/source/spl-wpnench.cc
index bf27328180..a97ebb9415 100644
--- a/crawl-ref/source/spl-wpnench.cc
+++ b/crawl-ref/source/spl-wpnench.cc
@@ -43,7 +43,7 @@ static brand_type _convert_to_launcher(brand_type which_brand)
{
case SPWPN_FREEZING: return SPWPN_FROST;
case SPWPN_FLAMING: return SPWPN_FLAME;
- default: return (which_brand);
+ default: return which_brand;
}
}
@@ -61,9 +61,9 @@ static bool _ok_for_launchers(brand_type which_brand)
case SPWPN_RETURNING:
case SPWPN_CHAOS:
case SPWPN_VORPAL:
- return (true);
+ return true;
default:
- return (false);
+ return false;
}
}