Skip to content

Commit dffe9fd

Browse files
committed
Don't emit empty string concatenations for interpolated strings, see comment in #159
Don't add `+ ""` or `"" + ` when interpolations are at the very beginning or end of the string, or adjacent.
1 parent 9a6d980 commit dffe9fd

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

source/cppfront.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -1031,6 +1031,16 @@ class cppfront
10311031
}
10321032
ret += text.substr(current_start);
10331033

1034+
// Trim any stray "" pieces
1035+
auto match = std::string::size_type{};
1036+
while ((match = ret.find("\"\" + ", match)) != ret.npos) {
1037+
ret.replace(match, 5, "");
1038+
}
1039+
match = 0;
1040+
while ((match = ret.find(" + \"\"", match)) != ret.npos) {
1041+
ret.replace(match, 5, "");
1042+
}
1043+
10341044
return ret;
10351045
}
10361046

0 commit comments

Comments
 (0)