summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/debug.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-01-07 01:01:42 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-01-07 01:03:34 +0100
commit5826ef094930ec6a4cd4bb4d8ca4635f127aedcc (patch)
treed27510643ea2e2634b5d4e861933fb0f3d37ead5 /crawl-ref/source/debug.h
parente26350c05b0af0211daa2bdc06078432372da37a (diff)
downloadcrawl-ref-5826ef094930ec6a4cd4bb4d8ca4635f127aedcc.tar.gz
crawl-ref-5826ef094930ec6a4cd4bb4d8ca4635f127aedcc.zip
Mark AssertFailed() as noreturn.
Diffstat (limited to 'crawl-ref/source/debug.h')
-rw-r--r--crawl-ref/source/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/debug.h b/crawl-ref/source/debug.h
index e3fea4bc27..44773f38d9 100644
--- a/crawl-ref/source/debug.h
+++ b/crawl-ref/source/debug.h
@@ -39,7 +39,7 @@
#ifdef ASSERTS
-void AssertFailed(const char *expr, const char *file, int line, bool save_game);
+noreturn void AssertFailed(const char *expr, const char *file, int line, bool save_game);
#define ASSERT_SAVE(p) \
do { \