summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 15:23:06 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 15:23:06 +0100
commit4bec0a9a8809824433601d0398c55d6f57208cb3 (patch)
tree0e74ec0c0d401e3958ee6163c8f089512755c2f8
parent46e4e5397ba3375924567c5427318315a80619fe (diff)
std::hash -> boost::hash
-rw-r--r--unodevtools/source/skeletonmaker/cppcompskeleton.cxx2
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 & "