mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
use empty() instead of size()
This commit is contained in:
@@ -568,7 +568,7 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start
|
||||
|
||||
// 21.07.2005 - rainerk
|
||||
// Show extended information
|
||||
if (0 != epgData.itemDescriptions.size() && 0 != epgData.items.size()) {
|
||||
if ( !epgData.itemDescriptions.empty() && !epgData.items.empty()) {
|
||||
char line[256];
|
||||
std::vector<std::string>::iterator description;
|
||||
std::vector<std::string>::iterator item;
|
||||
|
Reference in New Issue
Block a user