Skip to content

Commit 8ad78c3

Browse files
committed
Fix the generation of properties for locations in expressions
Signed-off-by: Dimitar Dobrev <[email protected]>
1 parent 02955f9 commit 8ad78c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CppParser/Bootstrap/Bootstrap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1482,7 +1482,7 @@ public static bool SkipProperty(Property property, bool skipBaseCheck = false)
14821482
return true;
14831483
}
14841484

1485-
if (property.Name == "beginLoc" || property.Name == "endLoc" &&
1485+
if ((property.Name == "beginLoc" || property.Name == "endLoc") &&
14861486
@class.Name != "Stmt")
14871487
return true;
14881488

0 commit comments

Comments
 (0)