We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2f70ed commit 36ecc07Copy full SHA for 36ecc07
source/build.info
@@ -1 +1 @@
1
-"8A08:1411"
+"8A08:1847"
source/io.h
@@ -721,12 +721,16 @@ auto process_cpp2_line(
721
else {
722
switch (line[i]) {
723
break;case '{':
724
- braces.found_open_brace(lineno);
+ if (prev != '\'') { // ignore character literals
725
+ braces.found_open_brace(lineno);
726
+ }
727
728
break;case '}':
- braces.found_close_brace( source_position(lineno, i) );
- if (braces.current_depth() < 1) {
729
- found_end = true;
730
+ braces.found_close_brace( source_position(lineno, i) );
731
+ if (braces.current_depth() < 1) {
732
+ found_end = true;
733
734
}
735
736
break;case ';':
0 commit comments