summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/flood_find.h
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/flood_find.h
parentb80adef8882143cad34f3c8bcc9a8ccbd4440223 (diff)
downloadcrawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.tar.gz
crawl-ref-c41419c4f47bbf0737d3fedf58128c835d2c4e3b.zip
Drop parentheses around scalar values in "return".
Diffstat (limited to 'crawl-ref/source/flood_find.h')
-rw-r--r--crawl-ref/source/flood_find.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/crawl-ref/source/flood_find.h b/crawl-ref/source/flood_find.h
index d11a1459e9..e515aa4f9e 100644
--- a/crawl-ref/source/flood_find.h
+++ b/crawl-ref/source/flood_find.h
@@ -78,7 +78,7 @@ bool flood_find<fgrd, bound_check>::points_connected_from(
const coord_def &sp)
{
if (needed_points.empty())
- return (true);
+ return true;
set_floodseed(sp);
pathfind(RMODE_EXPLORE);
return (needed_points.empty());
@@ -89,7 +89,7 @@ bool flood_find<fgrd, bound_check>::any_point_connected_from(
const coord_def &sp)
{
if (needed_points.empty())
- return (true);
+ return true;
set_floodseed(sp);
const size_t sz = needed_points.size();
pathfind(RMODE_EXPLORE);
@@ -116,9 +116,9 @@ bool flood_find<fgrd, bound_check>::path_flood(
{
greedy_dist = 100;
greedy_place = coord_def(-1, -1);
- return (true);
+ return true;
}
- return (false);
+ return false;
}
if (no_vault && (*vaults)[dc.x][dc.y])
@@ -132,7 +132,7 @@ bool flood_find<fgrd, bound_check>::path_flood(
{
needed_points.erase(i);
if (needed_points.empty())
- return (true);
+ return true;
}
}
@@ -144,23 +144,23 @@ bool flood_find<fgrd, bound_check>::path_flood(
{
greedy_dist = 100;
greedy_place = coord_def(-1, -1);
- return (true);
+ return true;
}
- return (false);
+ return false;
}
if (needed_features[ feat ])
{
unexplored_place = dc;
unexplored_dist = traveled_distance;
- return (true);
+ return true;
}
if (check_traversable && !feat_is_traversable(feat)
&& feat != DNGN_SECRET_DOOR
&& !feat_is_trap(feat))
{
- return (false);
+ return false;
}
if (!left_vault && vaults && !(*vaults)[dc.x][dc.y])
@@ -168,7 +168,7 @@ bool flood_find<fgrd, bound_check>::path_flood(
good_square(dc);
- return (false);
+ return false;
}
#endif