diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 12:48:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 13:17:07 +0100 |
commit | 9ff5abf2e17e1f482a608c8c4a76b563fe8fe7e3 (patch) | |
tree | e074150783b29e3e8a884c2be93d15389f514c92 /sc/inc/dpcache.hxx | |
parent | ea5b48e9da1ea750cc4549f7cd76771800101ed2 (diff) |
loplugin:privatebase: Make derivation from noncopyable explicitly private
Change-Id: Ia410950353aec0106ea82d025ed3ee89c79ca127
Diffstat (limited to 'sc/inc/dpcache.hxx')
-rw-r--r-- | sc/inc/dpcache.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/dpcache.hxx b/sc/inc/dpcache.hxx index 9422b76faccc..2329f76a2f78 100644 --- a/sc/inc/dpcache.hxx +++ b/sc/inc/dpcache.hxx @@ -41,7 +41,7 @@ struct ScDPNumGroupInfo; * This class represents the cached data part of the datapilot cache table * implementation. */ -class SC_DLLPUBLIC ScDPCache : boost::noncopyable +class SC_DLLPUBLIC ScDPCache : private boost::noncopyable { typedef std::unordered_set<OUString, OUStringHash> StringSetType; |