diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 13:07:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 13:17:09 +0100 |
commit | c599d100168e2022cb2323503f3c49ae1ec91513 (patch) | |
tree | 6e3312b3546a5108fafcee811530eb826cbb7c6d | |
parent | 9f2e50408f724c2b8a2b13e322325b6d535d1477 (diff) |
loplugin:privatebase: Make derivation from BitSet explicitly private
Change-Id: I9c61aee4cbf3f461c84f064ac8259e51aa7b0ada
-rw-r--r-- | sfx2/inc/bitset.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/inc/bitset.hxx b/sfx2/inc/bitset.hxx index 42807935fb35..67651e1a15bc 100644 --- a/sfx2/inc/bitset.hxx +++ b/sfx2/inc/bitset.hxx @@ -137,7 +137,7 @@ inline bool BitSet::operator!=( const BitSet& rSet ) const return !( *this == rSet ); } -class IndexBitSet : BitSet +class IndexBitSet : private BitSet { public: sal_uInt16 GetFreeIndex(); |