Skip to content

Commit c0127ab

Browse files
authored
Update CppInterOp.cpp
1 parent 87bff92 commit c0127ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/CppInterOp/CppInterOp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,7 @@ bool GetClassTemplatedMethods(const std::string& name, TCppScope_t parent,
11161116
funcs.push_back(R.getFoundDecl());
11171117
}
11181118
// Loop over overload set
1119-
else if (R.getResultKind() == clang_LookupResult_Found_Overloaded) {
1119+
else if (R.getResultKind() == clang_LookupResult_Found_Overloaded ) {
11201120
for (auto* Found : R)
11211121
if (IsTemplatedFunction(Found))
11221122
funcs.push_back(Found);

0 commit comments

Comments
 (0)