Changeset - r8330:b2f77e5f39e7
[Not reviewed]
master
0 1 0
glx - 16 years ago 2008-01-17 16:46:41
glx@openttd.org
(svn r11896) -Fix (r11886): a missing const broke compilation with MSVC
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/strings_func.h
Show inline comments
 
@@ -72,7 +72,7 @@ int CDECL StringIDSorter(const void *a, 
 
/** 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();
0 comments (0 inline, 0 general)