remove unnecessary file

This commit is contained in:
Maho Nakata 2014-02-05 01:41:25 +00:00
parent 8543a6a920
commit 937cfcb53e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=342619

View file

@ -1,19 +0,0 @@
--- configmgr/source/partial.hxx
+++ configmgr/source/partial.hxx
@@ -26,6 +26,7 @@
#include "sal/config.h"
+#include <boost/functional/hash.hpp>
#include <boost/unordered_map.hpp> // using the boost container because it explicitly allows recursive types
#include <set>
@@ -50,7 +51,7 @@ public:
private:
struct Node {
- typedef boost::unordered_map< rtl::OUString, Node > Children;
+ typedef boost::unordered_map< rtl::OUString, Node, rtl::OUStringHash > Children;
Node(): startInclude(false) {}
void clear() { startInclude=false; children.clear(); }