Codechange: replace x.size() == 0 with x.empty()
This commit is contained in:
@@ -172,7 +172,7 @@ struct ScriptAllocator {
|
||||
~ScriptAllocator()
|
||||
{
|
||||
#ifdef SCRIPT_DEBUG_ALLOCATIONS
|
||||
assert(this->allocations.size() == 0);
|
||||
assert(this->allocations.empty());
|
||||
#endif
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user