summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ctest.h
diff options
context:
space:
mode:
authorSamuel Bronson <naesten@gmail.com>2013-04-06 17:44:00 -0400
committerSamuel Bronson <naesten@gmail.com>2013-04-06 18:10:55 -0400
commite8de7e4a1caf40e6c3ba2c606c2292d56d3215c6 (patch)
tree9e619dfe1599b55464ac736d5dee8e3128a1f9bf /crawl-ref/source/ctest.h
parentae9976d8119c532d90ef5a658dc9156f427854b6 (diff)
downloadcrawl-ref-e8de7e4a1caf40e6c3ba2c606c2292d56d3215c6.tar.gz
crawl-ref-e8de7e4a1caf40e6c3ba2c606c2292d56d3215c6.zip
Correct missing #include "foo.h" from foo.cc
(Also had to fix a prototype in ctest.h)
Diffstat (limited to 'crawl-ref/source/ctest.h')
-rw-r--r--crawl-ref/source/ctest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ctest.h b/crawl-ref/source/ctest.h
index 6aabaa2ce9..1a74c7f337 100644
--- a/crawl-ref/source/ctest.h
+++ b/crawl-ref/source/ctest.h
@@ -2,7 +2,7 @@
#define CTEST_H
#if defined(DEBUG_DIAGNOSTICS) || defined(DEBUG_TESTS)
-void run_tests(bool exit_on_complete);
+bool run_tests(bool exit_on_complete);
#endif
#endif