Skip to content

Commit b5d94da

Browse files
[llvm-debuginfo-analyzer] IR Reader.
Fix issue with C++98 error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi]
1 parent 5c50f39 commit b5d94da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/DebugInfo/LogicalView/Readers/LVIRReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ void LVIRReader::addAccess(LVElement *Element, DINode::DIFlags Flags) {
439439
Element->setAccessibilityCode(dwarf::DW_ACCESS_private);
440440
else if ((Flags & DINode::FlagAccessibility) == DINode::FlagPublic)
441441
Element->setAccessibilityCode(dwarf::DW_ACCESS_public);
442-
};
442+
}
443443

444444
// getFile()
445445
// DIScope

0 commit comments

Comments
 (0)