[Libreoffice-commits] core.git: codemaker/inc

Stephan Bergmann sbergman at redhat.com
Tue Apr 2 06:41:41 PDT 2013


 codemaker/inc/codemaker/dependencies.hxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c1c6feedb3b1f9412f852be06538f0e4c66bb12f
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Apr 2 15:34:45 2013 +0200

    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

diff --git a/codemaker/inc/codemaker/dependencies.hxx b/codemaker/inc/codemaker/dependencies.hxx
index 1579392..c45db67 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.


More information about the Libreoffice-commits mailing list