summaryrefslogtreecommitdiff
path: root/unotools/source/config/cmdoptions.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-01-04 19:09:27 +0100
committerJulien Nabet <serval2412@yahoo.fr>2015-01-04 19:11:13 +0100
commit7da92fdcb040d1f82fc2a6c61fd05f76f7344035 (patch)
tree53d1eb844f8f5562482b78a85986a06466496005 /unotools/source/config/cmdoptions.cxx
parent6fd453224fc5fcf9953092d2883ab45417980f48 (diff)
cppcheck: Possible inefficient checking for <var> emptiness
Change-Id: I6ca0e477a4429e762c48c721951b9876db3a5c6c
Diffstat (limited to 'unotools/source/config/cmdoptions.cxx')
-rw-r--r--unotools/source/config/cmdoptions.cxx2
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