summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/attitude-change.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/attitude-change.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/attitude-change.cc')
-rw-r--r--crawl-ref/source/attitude-change.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/attitude-change.cc b/crawl-ref/source/attitude-change.cc
index ea35f1c04a..34373da50f 100644
--- a/crawl-ref/source/attitude-change.cc
+++ b/crawl-ref/source/attitude-change.cc
@@ -170,7 +170,7 @@ bool make_god_gifts_disappear()
}
}
- return (count);
+ return count;
}
// When under penance, Yredelemnulites can lose all nearby undead slaves.
@@ -216,10 +216,10 @@ bool yred_slaves_abandon_you()
simple_god_message(" reclaims your granted undead slaves!");
else
simple_god_message(" reclaims some of your granted undead slaves!");
- return (true);
+ return true;
}
- return (false);
+ return false;
}
// When under penance, Beoghites can lose all nearby orcish followers,
@@ -289,10 +289,10 @@ bool beogh_followers_abandon_you()
chan << std::endl;
- return (true);
+ return true;
}
- return (false);
+ return false;
}
static void _print_good_god_holy_being_speech(bool neutral,