diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2011-02-03 19:05:11 -0700 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-04 03:09:05 +0100 |
commit | e06b75860a9d46e971d7c638e1ce8a03b46b1f7b (patch) | |
tree | 366077c9df14878e2b935cc4764a4f02d6018f95 /l10ntools/inc | |
parent | cbd9e9d4b81e1cb8651a47d8fb671df4052ff0ab (diff) |
std::hash -> boost::hash
Diffstat (limited to 'l10ntools/inc')
-rw-r--r-- | l10ntools/inc/tagtest.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/inc/tagtest.hxx b/l10ntools/inc/tagtest.hxx index a348cb870cc1..87d413f1a10a 100644 --- a/l10ntools/inc/tagtest.hxx +++ b/l10ntools/inc/tagtest.hxx @@ -58,7 +58,7 @@ struct lessByteString{ struct hashByteString{ size_t operator()( const ByteString& rName ) const{ - std::hash< const char* > myHash; + boost::hash< const char* > myHash; return myHash( rName.GetBuffer() ); } }; |