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 /vcl/source/gdi/outdev3.cxx | |
parent | cbd9e9d4b81e1cb8651a47d8fb671df4052ff0ab (diff) |
std::hash -> boost::hash
Diffstat (limited to 'vcl/source/gdi/outdev3.cxx')
-rw-r--r-- | vcl/source/gdi/outdev3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx index 709bdc012c57..1d2eb329614b 100644 --- a/vcl/source/gdi/outdev3.cxx +++ b/vcl/source/gdi/outdev3.cxx @@ -996,8 +996,8 @@ ImplFontEntry::~ImplFontEntry() size_t ImplFontEntry::GFBCacheKey_Hash::operator()( const GFBCacheKey& rData ) const { - std::hash<sal_UCS4> a; - std::hash<int > b; + boost::hash<sal_UCS4> a; + boost::hash<int > b; return a(rData.first) ^ b(rData.second); } |