Remove literal comparison of empty strings
Literal comparison to check if a string is empty (string == ""
) is quite slow, so it must be replaced it with call to empty()
Literal comparison to check if a string is empty (string == ""
) is quite slow, so it must be replaced it with call to empty()