[clang-tidy] Use .empty instead of comparing size
Found with readability-container-size-empty Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Paul Beckingham
parent
d43fa66489
commit
a331cceded
@@ -41,7 +41,7 @@ bool nag (Task& task)
|
||||
return false;
|
||||
|
||||
auto msg = Context::getContext ().config.get ("nag");
|
||||
if (msg != "")
|
||||
if (!msg.empty())
|
||||
{
|
||||
// Scan all pending, non-recurring tasks.
|
||||
auto pending = Context::getContext ().tdb2.pending.get_tasks ();
|
||||
|
||||
Reference in New Issue
Block a user