summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/xml++.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-08 21:21:38 +0200
committerRobin Gareus <robin@gareus.org>2016-04-08 21:21:38 +0200
commitff05c823124135274e6274252eaa0487b93b7df1 (patch)
tree780efd07c5b9af2f5b0a7347bb5ea5da48b302cd /libs/pbd/pbd/xml++.h
parent3def1b2830528319d2b720267e2f153dd17d72c0 (diff)
Revert "experimental session-save speedup" -- needs C++11
This reverts commit d1dcedaccfd5adfd661724476003410d5d251756.
Diffstat (limited to 'libs/pbd/pbd/xml++.h')
-rw-r--r--libs/pbd/pbd/xml++.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/pbd/xml++.h b/libs/pbd/pbd/xml++.h
index dac8de67cd..0e1bd09cc2 100644
--- a/libs/pbd/pbd/xml++.h
+++ b/libs/pbd/pbd/xml++.h
@@ -29,7 +29,7 @@
#include <string>
#include <vector>
-#include <unordered_map>
+#include <map>
#include <cstdio>
#include <cstdarg>
@@ -50,7 +50,7 @@ typedef XMLNodeList::const_iterator XMLNodeConstIterator;
typedef std::vector<XMLProperty*> XMLPropertyList;
typedef XMLPropertyList::iterator XMLPropertyIterator;
typedef XMLPropertyList::const_iterator XMLPropertyConstIterator;
-typedef std::unordered_map<std::string, XMLProperty*> XMLPropertyMap;
+typedef std::map<std::string, XMLProperty*> XMLPropertyMap;
class LIBPBD_API XMLTree {
public: