--- src/VTexture.h.orig 2011-10-12 00:18:35.000000000 +0400 +++ src/VTexture.h 2014-11-24 22:08:42.749026473 +0300 @@ -135,7 +135,7 @@ void cleanUnregistredTextures(); - HashNamespace::hash_map, hashcmp_str> m_textureSizeCache; + HashNamespace::hash_map m_textureSizeCache; std::vector m_textureSizeCacheKeys; std::vector m_textureSizeCacheValues; --- src/drawlib/DrawLibOpenGL.cpp.orig 2011-10-12 00:18:26.000000000 +0400 +++ src/drawlib/DrawLibOpenGL.cpp 2014-11-24 22:08:12.925973647 +0300 @@ -80,7 +80,7 @@ /* a glyph from other glyphs */ /*kejo:why not just grrr create a copy contructor*/ GLFontGlyph(const std::string& i_value, - HashNamespace::hash_map, hashcmp_str>& i_glyphsLetters); + HashNamespace::hash_map& i_glyphsLetters); virtual ~GLFontGlyph(); std::string Value() const; @@ -132,11 +132,11 @@ private: std::vector m_glyphsKeys; std::vector m_glyphsValues; - HashNamespace::hash_map, hashcmp_str> m_glyphs; + HashNamespace::hash_map m_glyphs; std::vector m_glyphsLettersKeys; std::vector m_glyphsLettersValues; - HashNamespace::hash_map, hashcmp_str> m_glyphsLetters; + HashNamespace::hash_map m_glyphsLetters; unsigned int getLonguestLineSize(const std::string& i_value, unsigned int i_start = 0, unsigned int i_nbLinesToRead = -1); }; @@ -825,7 +825,7 @@ } GLFontGlyph::GLFontGlyph(const std::string& i_value, - HashNamespace::hash_map, hashcmp_str>& i_glyphsLetters) { + HashNamespace::hash_map& i_glyphsLetters) { GLFontGlyph* v_glyph; std::string v_char;