Skip to content

Commit

Permalink
Fix logging macro invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianbs96 committed Feb 5, 2024
1 parent e616272 commit 9e215dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/PhasarLLVM/TypeHierarchy/DIBasedTypeHierarchy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ DIBasedTypeHierarchy::DIBasedTypeHierarchy(const LLVMProjectIRDB &IRDB) {
"Enclosing type '"
<< Parent->getName() << "' of virtual function '"
<< llvm::demangle(DIFun->getLinkageName().str())
<< "' not found in the current module")
<< "' not found in the current module");

continue;
}
Expand Down Expand Up @@ -190,7 +190,7 @@ auto DIBasedTypeHierarchy::subTypesOf(ClassType Ty) const noexcept
return isSubType(SuperType, Type); // NOLINT
}

[[nodiscard]] auto DIBasedTypeHierarchy::getSuperTypes(ClassType Type)
[[nodiscard]] auto DIBasedTypeHierarchy::getSuperTypes(ClassType /*Type*/)
-> std::set<ClassType> {
// TODO: implement (low priority)
llvm::report_fatal_error("Not implemented");
Expand Down

0 comments on commit 9e215dc

Please sign in to comment.