summaryrefslogtreecommitdiff
path: root/src/strings_func.h
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2008-01-17 16:46:41 +0000
committerglx <glx@openttd.org>2008-01-17 16:46:41 +0000
commit4f31704e2e295fb06cbe53d43f5665fe8f70aed1 (patch)
tree4c8178e84a4c6e591b2904f75f8af5fb25c3337d /src/strings_func.h
parentf37174f0e23cd4c200ab1c38af3a712a4789f0f8 (diff)
downloadopenttd-4f31704e2e295fb06cbe53d43f5665fe8f70aed1.tar.xz
(svn r11896) -Fix (r11886): a missing const broke compilation with MSVC
Diffstat (limited to 'src/strings_func.h')
-rw-r--r--src/strings_func.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strings_func.h b/src/strings_func.h
index 9067f7049..2b876038b 100644
--- a/src/strings_func.h
+++ b/src/strings_func.h
@@ -72,7 +72,7 @@ int CDECL StringIDSorter(const void *a, const void *b);
/** Key comparison function for std::map */
struct StringIDCompare
{
- bool operator()(StringID s1, StringID s2) { return StringIDSorter(&s1, &s2) < 0; }
+ bool operator()(StringID s1, StringID s2) const { return StringIDSorter(&s1, &s2) < 0; }
};
void CheckForMissingGlyphsInLoadedLanguagePack();