summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-01-02 21:15:40 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-01-02 21:15:40 +0100
commitd7794d2584cd5d476b011b5344c77ad59c179c58 (patch)
treef1aa0cdcaf73dbb3bc487af345093617537f982b /linguistic
parent3fc1902aa755c86f2625a4102ccbab7b7c083ea5 (diff)
linguistic: fix gcc-4.8 build
Change-Id: Ic67d11cff11078a7d83a3ee98b91ec8ae138adef
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdic.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/convdic.hxx b/linguistic/source/convdic.hxx
index 73948f20b57a..5b30e67b79ab 100644
--- a/linguistic/source/convdic.hxx
+++ b/linguistic/source/convdic.hxx
@@ -57,12 +57,12 @@ struct StrEQ
}
};
-typedef std::unordered_multimap< const OUString, OUString,
+typedef std::unordered_multimap< OUString, OUString,
const OUStringHash, StrEQ > ConvMap;
typedef std::set< OUString, StrLT > ConvMapKeySet;
-typedef std::unordered_multimap< const OUString, sal_Int16,
+typedef std::unordered_multimap< OUString, sal_Int16,
OUStringHash, StrEQ > PropTypeMap;