Skip to content

Commit

Permalink
SVF code formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
yuleisui committed Jan 30, 2024
1 parent e59e0a3 commit 0e56bc0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion svf-llvm/lib/CppUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) ||
Expand Down

0 comments on commit 0e56bc0

Please sign in to comment.