From 0e56bc038bf207a1ca320b5f5ad241e13ab33e14 Mon Sep 17 00:00:00 2001 From: GitHub Actions Build Date: Tue, 30 Jan 2024 07:53:11 +0000 Subject: [PATCH] SVF code formatter --- svf-llvm/lib/CppUtil.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svf-llvm/lib/CppUtil.cpp b/svf-llvm/lib/CppUtil.cpp index b20eaf90e..cd42de0d3 100644 --- a/svf-llvm/lib/CppUtil.cpp +++ b/svf-llvm/lib/CppUtil.cpp @@ -813,7 +813,8 @@ bool cppUtil::matchesLabel(const std::string &foo, const std::string &label) * @param foo * @return */ -bool cppUtil::isTemplateFunc(const Function *foo) { +bool cppUtil::isTemplateFunc(const Function *foo) +{ assert(foo->hasName() && "foo does not have a name? possible indirect call"); const std::string &name = foo->getName().str(); bool matchedLabel = matchesLabel(name, znstLabel) || matchesLabel(name, znkstLabel) ||