Skip to content

Fix reformat for long strings

clang-format can break a "long string" into multiple "smaller" "strings"

Example: string a = "loooooooooooong"; can be reformatted to string a = "loooooo" "oooooong"; selecting and reformatting code after such a change now works.

Edited by Bernd Buschinski

Merge request reports