Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
Qt Creator 4.10.0
-
None
Description
Using digit separators and then running auto-indent selection causes the next line to be incorrectly indented. See example main.cpp, select all text, right-click and press auto-indent selection. The output is shown in file main_after_auto_indent.cpp.
Before:
int32_t var = 1'000;
std::cout << "var: " << var << std::endl;
After:
int32_t var = 1'000;
std::cout << "var: " << var << std::endl;
Attachments
Issue Links
- duplicates
-
QTCREATORBUG-14939 Support for C++ 14 digit separators
- Closed