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

-Werror,-Wunused-member-function

Change-Id: Id218a6123037bf624044a6297edaede924bd4a9a
üst 43796f03
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
#include <rtl/uri.hxx> #include <rtl/uri.hxx>
#include "rtl/allocator.hxx" #include "rtl/allocator.hxx"
#include <boost/noncopyable.hpp>
#include <boost/unordered_map.hpp> #include <boost/unordered_map.hpp>
#include <list> #include <list>
...@@ -628,7 +629,7 @@ void Bootstrap_Impl::expandValue( ...@@ -628,7 +629,7 @@ void Bootstrap_Impl::expandValue(
namespace { namespace {
struct bootstrap_map { struct bootstrap_map: private boost::noncopyable {
typedef boost::unordered_map< typedef boost::unordered_map<
rtl::OUString, Bootstrap_Impl *, rtl::OUString, Bootstrap_Impl *,
rtl::OUStringHash, std::equal_to< rtl::OUString >, rtl::OUStringHash, std::equal_to< rtl::OUString >,
...@@ -652,8 +653,6 @@ struct bootstrap_map { ...@@ -652,8 +653,6 @@ struct bootstrap_map {
} }
private: private:
bootstrap_map(); // not defined
static t * m_map; static t * m_map;
}; };
......
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