diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-11 16:32:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-11 16:32:28 +0200 |
commit | 6f8d047519c8e80371a646ce4bad8f7304aab6ea (patch) | |
tree | f79b5a6cae706b3d4422a02bd109824eb8a2eeaa /include | |
parent | c726059adf71f9c812df3363b4902c52023827b6 (diff) |
loplugin:salbool: Better heuristic to determine code shared between C and C++
Change-Id: I09c9c57d5adeb665cc2508fad9727085a3289bfb
Diffstat (limited to 'include')
-rw-r--r-- | include/cppuhelper/interfacecontainer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cppuhelper/interfacecontainer.h b/include/cppuhelper/interfacecontainer.h index 07b296e5b7d2..2a88f39e5648 100644 --- a/include/cppuhelper/interfacecontainer.h +++ b/include/cppuhelper/interfacecontainer.h @@ -450,8 +450,8 @@ struct OBroadcastHelperVar OBroadcastHelperVar( ::osl::Mutex & rMutex_ ) : rMutex( rMutex_ ) , aLC( rMutex_ ) - , bDisposed( sal_False ) - , bInDispose( sal_False ) + , bDisposed( false ) + , bInDispose( false ) {} /** |