refactor(Core/Misc): Use .empty() instead of == "" (#7870)
This commit is contained in:
parent
6df7303b24
commit
339d58ecdc
2 changed files with 2 additions and 2 deletions
|
|
@ -325,7 +325,7 @@ public:
|
|||
std::string type;
|
||||
parsedStream >> type;
|
||||
|
||||
if (type == "")
|
||||
if (type.empty())
|
||||
break;
|
||||
|
||||
if (type == "uint8")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue