Kaydet (Commit) c1c6feed authored tarafından Stephan Bergmann's avatar Stephan Bergmann

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
üst 67d724e4
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment