summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-02 10:57:45 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-02 10:57:45 +0000
commit5b38990b34b34989f7929fe85a7976bdef707311 (patch)
treef6c2e6dfe99abe6f54bde048d0b50877c103a0dd /crawl-ref/source/libutil.h
parent94096b6785bedb7d82f63e0969400026e2f19965 (diff)
downloadcrawl-ref-5b38990b34b34989f7929fe85a7976bdef707311.tar.gz
crawl-ref-5b38990b34b34989f7929fe85a7976bdef707311.zip
Fixed segfault in explore discovery reporting (syllogism).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2295 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libutil.h')
-rw-r--r--crawl-ref/source/libutil.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/libutil.h b/crawl-ref/source/libutil.h
index fc42023f70..751baef885 100644
--- a/crawl-ref/source/libutil.h
+++ b/crawl-ref/source/libutil.h
@@ -36,9 +36,10 @@ int strip_number_tag(std::string &s, const std::string &tagprefix);
std::string strip_tag_prefix(std::string &s, const std::string &tagprefix);
std::string article_a(const std::string &name, bool lowercase = true);
-std::string pluralise(const std::string &name,
- const char *stock_plural_quals[] = standard_plural_qualifiers,
- const char *no_of[] = NULL);
+std::string pluralise(
+ const std::string &name,
+ const char *stock_plural_quals[] = standard_plural_qualifiers,
+ const char *no_of[] = NULL);
std::string number_in_words(unsigned number, int pow = 0);