summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-23 17:11:56 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-23 17:11:56 +0000
commit7e8a32831f88e720c9ba724037b76d09fc5c1cd0 (patch)
treec6cf3786e3650ee690136f8330fd8c50033c5eb3 /crawl-ref/source/libutil.h
parent74306af7d80b6dc3360b145270bd7d5ca20eb19f (diff)
downloadcrawl-ref-7e8a32831f88e720c9ba724037b76d09fc5c1cd0.tar.gz
crawl-ref-7e8a32831f88e720c9ba724037b76d09fc5c1cd0.zip
Allow monster symbols to be customised using the mon_glyph option.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1916 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libutil.h')
-rw-r--r--crawl-ref/source/libutil.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/libutil.h b/crawl-ref/source/libutil.h
index 990463852f..9af70c60ad 100644
--- a/crawl-ref/source/libutil.h
+++ b/crawl-ref/source/libutil.h
@@ -86,11 +86,11 @@ std::string trimmed_string( std::string s );
// remainder of the string as the last segment; negative values of nsplits
// split on all occurrences of the separator.
std::vector<std::string> split_string(
- const char *sep,
- std::string s,
- bool trim = true,
- bool accept_empties = false,
- int nsplits = -1);
+ const std::string &sep,
+ std::string s,
+ bool trim = true,
+ bool accept_empties = false,
+ int nsplits = -1);
inline std::string lowercase_first(std::string s)
{