diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-06 15:23:06 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-06 15:23:06 +0100 |
commit | 4bec0a9a8809824433601d0398c55d6f57208cb3 (patch) | |
tree | 0e74ec0c0d401e3958ee6163c8f089512755c2f8 /unodevtools | |
parent | 46e4e5397ba3375924567c5427318315a80619fe (diff) |
std::hash -> boost::hash
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/cppcompskeleton.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx index bd0c4acc..a3ce7d5f 100644 --- a/unodevtools/source/skeletonmaker/cppcompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/cppcompskeleton.cxx @@ -734,7 +734,7 @@ OString generateClassDefinition(std::ostream& o, if (options.componenttype == 2) { o << " typedef boost::unordered_map< ::sal_Int32, rtl::OUString, " - "std::hash<::sal_Int32> > ParamMap;\n" + "boost::hash<::sal_Int32> > ParamMap;\n" " typedef boost::unordered_map< rtl::OUString, ParamMap, " "rtl::OUStringHash > FunctionMap;\n\n" " ::rtl::OUString SAL_CALL getAddinProperty(const ::rtl::OUString & " |