diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-15 07:44:14 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-15 07:46:43 +0200 |
commit | fa0ffdbeb5a12b51c5d9202a5d7709d713a719f1 (patch) | |
tree | 4b742ff087e7f8a3a97d4faa4402cb1a924f52a5 /cppuhelper | |
parent | c2ffc9e180d387359d9c465770db3d01b7e84951 (diff) |
cppu::OMultiTypeInterfaceContainerHelperVar hashImpl param is unused
...since f059134fab0f91b7a15594ad06536a13fbfae034 "INTEGRATION: CWS
cppuhelpshrink: #i72766# save memory in cppuhelper, using a vector instead of a
hash_map" (but a dummy "void" default is left in place for backwards
compatibility).
Change-Id: I3bb0af8158f34737d41c344464f3cf944e2891ed
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx index 3efd35da8ee5..838a33a66c60 100644 --- a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx +++ b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx @@ -237,8 +237,8 @@ namespace cppu_ifcontainer void testOMultiTypeInterfaceContainerHelperVar() { - typedef ::cppu::OMultiTypeInterfaceContainerHelperVar< - const char*, rtl::CStringHash, rtl::CStringEqual> StrContainer; + typedef cppu::OMultiTypeInterfaceContainerHelperVar< + char const *, void, rtl::CStringEqual> StrContainer; const char *pTypes[nTests] = { |