summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-06-08 20:22:21 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-06-08 20:22:21 +0200
commit258af752a1d6f6dc337c97e8ceabf26bcb974f31 (patch)
treedd0a724b9c936b2fc8c497a6d8089d5afcf7c68d /crawl-ref/source/notes.cc
parenta2c649a2645682eb974353707775e599f1f2ce96 (diff)
downloadcrawl-ref-258af752a1d6f6dc337c97e8ceabf26bcb974f31.tar.gz
crawl-ref-258af752a1d6f6dc337c97e8ceabf26bcb974f31.zip
Turn pairs of assertions with x > min, x <= max into ASSERT_RANGE.
The perl regexp to do so is: s&ASSERT\(([^\n]+) >= ([^\n]+)\);\s*ASSERT\(\1 < ([^\n]+)\);&ASSERT_RANGE($1, $2, $3);&sg;
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index d35488cd8d..159fdf135c 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -424,8 +424,7 @@ void Note::check_milestone() const
// Wizlabs report their milestones on their own.
if (br != -1 && br != BRANCH_WIZLAB)
{
- ASSERT(br >= 0);
- ASSERT(br < NUM_BRANCHES);
+ ASSERT_RANGE(br, 0, NUM_BRANCHES);
string branch = place_name(packed_place, true, false).c_str();
if (branch.find("The ") == 0)
branch[0] = tolower(branch[0]);