mon_store_converter.cc: use empty() instead of size()

Use empty() since it should be prefered as it has, following the
standard, a constant time complexity regardless of the containter
type. The same is not guaranteed for size().

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2013-02-26 11:15:35 +01:00
parent ed83d4b9df
commit e3b27b7b67

View File

@ -247,7 +247,7 @@ class MonitorStoreConverter {
}
void _convert_paxos() {
assert(gvs.size() > 0);
assert(!gvs.empty());
set<version_t>::reverse_iterator rit = gvs.rbegin();
version_t highest_gv = *rit;
@ -320,7 +320,7 @@ int main(int argc, const char *argv[])
common_init_finish(g_ceph_context);
g_ceph_context->_conf->apply_changes(NULL);
if (args.size() < 1) {
if (args.empty()) {
usage(our_name);
return 1;
}