refactor(Core/Misc): Use .empty() instead of == "" (#7870)
This commit is contained in:
@@ -325,7 +325,7 @@ public:
|
||||
std::string type;
|
||||
parsedStream >> type;
|
||||
|
||||
if (type == "")
|
||||
if (type.empty())
|
||||
break;
|
||||
|
||||
if (type == "uint8")
|
||||
|
||||
Reference in New Issue
Block a user