Remove redundant initialization

This commit is contained in:
Filip Gawin 2019-03-02 19:42:25 +01:00
parent 8e1fb126d7
commit c110ffcdaa
17 changed files with 25 additions and 25 deletions

View file

@ -44,7 +44,7 @@ TEST(StringUtil, StringEndsWith)
TEST(StringUtil, StringPopBackIf)
{
std::string abc = "abc";
std::string empty = "";
std::string empty;
StringPopBackIf(&abc, 'a');
StringPopBackIf(&empty, 'a');