Skip to content

Commit

Permalink
[lldb-dap] Minor cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZequanWu committed May 2, 2024
1 parent c7209cb commit ee63f28
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lldb/tools/lldb-dap/JSONUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ std::vector<std::string> GetStrings(const llvm::json::Object *obj,

static bool IsClassStructOrUnionType(lldb::SBType t) {
return (t.GetTypeClass() & (lldb::eTypeClassUnion | lldb::eTypeClassStruct |
lldb::eTypeClassUnion | lldb::eTypeClassArray)) !=
0;
lldb::eTypeClassArray)) != 0;
}

/// Create a short summary for a container that contains the summary of its
Expand Down

0 comments on commit ee63f28

Please sign in to comment.