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

Use boost::noncopyable

Change-Id: Ifeee0632f6e163037bea9ba2ee8d19f050f9a212
üst d8ae59e0
......@@ -451,7 +451,7 @@ Bootstrap_Impl * get_static_bootstrap_handle() SAL_THROW(())
return s_handle;
}
struct FundamentalIniData {
struct FundamentalIniData: private boost::noncopyable {
rtlBootstrapHandle ini;
FundamentalIniData() {
......@@ -466,10 +466,6 @@ struct FundamentalIniData {
}
~FundamentalIniData() { rtl_bootstrap_args_close(ini); }
private:
FundamentalIniData(FundamentalIniData &); // not defined
void operator =(FundamentalIniData &); // not defined
};
struct FundamentalIni: public rtl::Static< FundamentalIniData, FundamentalIni >
......
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