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 | 1efeac6ea9912b48c45e1891e7267e99b7c49081 (patch) | |
tree | 1ea34894c9b31d2c84f00e1b0c7ddb85f9664408 /unodevtools/source | |
parent | 639825975e7657c7b3f4eeef208112780e71e545 (diff) |
std::hash -> boost::hash
Diffstat (limited to 'unodevtools/source')
-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 a1ecdf540d3b..f2b526ba3c95 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 & " |