Skip to content

Commit

Permalink
[nfc] [lldb] Remove excessive parentheses in SymbolFileDWARF::GetUID
Browse files Browse the repository at this point in the history
  • Loading branch information
jankratochvil committed Oct 29, 2020
1 parent 13aee94 commit 41f2bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
Expand Up @@ -1270,7 +1270,7 @@ user_id_t SymbolFileDWARF::GetUID(DIERef ref) {

return user_id_t(GetDwoNum().getValueOr(0x7fffffff)) << 32 |
ref.die_offset() |
(lldb::user_id_t(ref.section() == DIERef::Section::DebugTypes) << 63);
lldb::user_id_t(ref.section() == DIERef::Section::DebugTypes) << 63;
}

llvm::Optional<SymbolFileDWARF::DecodedUID>
Expand Down

0 comments on commit 41f2bb2

Please sign in to comment.