Author: hdu
Date: Wed May 8 17:45:19 2013
New Revision: 1480378
URL: http://svn.apache.org/r1480378
Log:
#i122208# force configmgr's partial to boost container for now
boost containers allow recursive declarations explicitly
Modified:
openoffice/branches/rejuvenate01/main/configmgr/source/modifications.hxx
Modified:
openoffice/branches/rejuvenate01/main/configmgr/source/modifications.hxx
URL:
http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/configmgr/source/modifications.hxx?rev=1480378&r1=1480377&r2=1480378&view=diff
==============================================================================
--- openoffice/branches/rejuvenate01/main/configmgr/source/modifications.hxx
(original)
+++ openoffice/branches/rejuvenate01/main/configmgr/source/modifications.hxx
Wed May 8 17:45:19 2013
@@ -26,20 +26,19 @@
#include "sal/config.h"
-#include <map>
+#include <boost/unordered_map.hpp> // using the boost container because it
explicitly allows recursive types
#include "boost/noncopyable.hpp"
#include "path.hxx"
-
-namespace rtl { class OUString; }
+#include "rtl/ustring.hxx"
namespace configmgr {
class Modifications: private boost::noncopyable {
public:
struct Node {
- typedef std::map< rtl::OUString, Node > Children;
+ typedef boost::unordered_map< rtl::OUString, Node > Children;
Children children;
};