Currently clang-format indents the second in a sequence of string literals:
Code before:
"line 1" "line 2";
This is undesirable however, since the second string literal might have been
introduced as a result of string breaking during a previous clang-format run.
This patch makes clang-format to not indent the second and next string literals.
Code after:
"line 1" "line 2"