diff options
author | Martin van Beurden <chadoe@xbmc.org> | 2011-12-27 15:03:29 +0100 |
---|---|---|
committer | Martin van Beurden <chadoe@xbmc.org> | 2011-12-27 15:03:53 +0100 |
commit | bd5a32a90a0f2abb6f992d483c5dff00802ea974 (patch) | |
tree | 356cc8d612b985997b16db8e9caab1ed21f4e77f | |
parent | 3404df3c3c36f55a1b7b53d41d65976cc605979c (diff) |
[WIN32] fixed: build error
-rw-r--r-- | xbmc/utils/Weather.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/utils/Weather.h b/xbmc/utils/Weather.h index d986f216ec..21796cec35 100644 --- a/xbmc/utils/Weather.h +++ b/xbmc/utils/Weather.h @@ -131,7 +131,7 @@ private: }; std::map<CStdString, int, ci_less> m_localizedTokens; - typedef std::map<CStdString, int>::const_iterator ilocalizedTokens; + typedef std::map<CStdString, int, ci_less>::const_iterator ilocalizedTokens; CWeatherInfo m_info; int m_location; |