diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-04-02 15:34:45 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-04-02 15:34:45 +0200 |
commit | c1c6feedb3b1f9412f852be06538f0e4c66bb12f (patch) | |
tree | a3203e24104d30cad163eba373de5b92b5297cb8 /codemaker | |
parent | 67d724e46579462d906477f52cf7919338bab834 (diff) |
Sort generated includes lexicographically
...by switching from boost::unordered_map to std::map; mainly to be able to
easily diff workdir/*/UnoApiHeadersTarget trees for regressions with upcoming
changes to cppumaker.
Change-Id: I286f9828ef2918ace635ecd551ac273f2cba803d
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/inc/codemaker/dependencies.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/codemaker/inc/codemaker/dependencies.hxx b/codemaker/inc/codemaker/dependencies.hxx index 157939208e5b..c45db676d667 100644 --- a/codemaker/inc/codemaker/dependencies.hxx +++ b/codemaker/inc/codemaker/dependencies.hxx @@ -22,11 +22,11 @@ #include "sal/config.h" +#include <map> + #include "rtl/ref.hxx" #include "rtl/string.hxx" -#include <boost/unordered_map.hpp> - namespace rtl { class OUString; } class TypeManager; @@ -47,7 +47,7 @@ public: */ enum Kind { KIND_NO_BASE, KIND_BASE }; - typedef boost::unordered_map< rtl::OString, Kind, rtl::OStringHash > Map; + typedef std::map< rtl::OString, Kind > Map; /** Constructs the dependencies for a given type. |