diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-01-04 19:09:27 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-01-04 19:11:13 +0100 |
commit | 7da92fdcb040d1f82fc2a6c61fd05f76f7344035 (patch) | |
tree | 53d1eb844f8f5562482b78a85986a06466496005 /unotools | |
parent | 6fd453224fc5fcf9953092d2883ab45417980f48 (diff) |
cppcheck: Possible inefficient checking for <var> emptiness
Change-Id: I6ca0e477a4429e762c48c721951b9876db3a5c6c
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/cmdoptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/cmdoptions.cxx b/unotools/source/config/cmdoptions.cxx index d343e9ffa347..59b7f1966f4b 100644 --- a/unotools/source/config/cmdoptions.cxx +++ b/unotools/source/config/cmdoptions.cxx @@ -61,7 +61,7 @@ class SvtCmdOptions bool HasEntries() const { - return ( m_aCommandHashMap.size() > 0 ); + return ( !m_aCommandHashMap.empty() ); } bool Lookup( const OUString& aCmd ) const |