summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-10-18 12:36:55 +0100
committerPeter Powell <petpow@saberuk.com>2019-10-18 12:36:55 +0100
commitc61a37790d08d75f5c355487442865999afbf309 (patch)
treea6124839f2f6340de304b0c79de1942438554ce8 /include
parent8c0912f428afc6340693f2c55ed82358e4a4579a (diff)
Switch ChildMap and EntryMap to insp::flat_map.
Diffstat (limited to 'include')
-rw-r--r--include/serialize.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/serialize.h b/include/serialize.h
index b3783a48f..2ee23e2ef 100644
--- a/include/serialize.h
+++ b/include/serialize.h
@@ -31,10 +31,10 @@ class CoreExport Serializable
{
public:
/** Maps keys to serialised data. */
- typedef TR1NS::unordered_map<std::string, Data> ChildMap;
+ typedef insp::flat_map<std::string, Data> ChildMap;
/** Maps keys to simple values. */
- typedef TR1NS::unordered_map<std::string, std::string> EntryMap;
+ typedef insp::flat_map<std::string, std::string> EntryMap;
private:
/** A mapping of keys to serialised data. */