summaryrefslogtreecommitdiff
path: root/helpcompiler/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-04-07 09:13:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-04-07 11:50:43 +0200
commit55783b8006a509dbdfe29a1bd5d86f26204b6a42 (patch)
tree2c5af0bee4800d79361b607645a4d764b797ac77 /helpcompiler/source
parente967aea2d8cc4f9fc608cb726cb474c184fb61de (diff)
std::string has a std::hash specialisation since C++11
Change-Id: I8cc01420d0235a8d1686881eca1ad9cc4a67ebe0 Reviewed-on: https://gerrit.libreoffice.org/70362 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'helpcompiler/source')
-rw-r--r--helpcompiler/source/HelpLinker.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpcompiler/source/HelpLinker.cxx b/helpcompiler/source/HelpLinker.cxx
index 86d2d254bef2..f32e242f0867 100644
--- a/helpcompiler/source/HelpLinker.cxx
+++ b/helpcompiler/source/HelpLinker.cxx
@@ -173,7 +173,7 @@ static void writeKeyValue_DBHelp( FILE* pFile, const std::string& aKeyStr, const
class HelpKeyword
{
private:
- typedef std::unordered_map<std::string, Data, pref_hash> DataHashtable;
+ typedef std::unordered_map<std::string, Data> DataHashtable;
DataHashtable _hash;
public: