Skip to content

Commit

Permalink
Function lookup, enable template after parsing error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobandersen committed Sep 2, 2021
1 parent f9e0224 commit 341afb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/specific/cpp_function_lookup.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void fPlain(int arg);
void fPtr(int *arg);
void fLRef(int &arg);
void fRRef(int &&arg);
//template<typename ...T> // TODO: add this again when the parsing has been fixed
template<typename ...T>
void fParamPack(T ...arg);
class A {};
void fMemPtr(int A::*arg);
Expand Down

0 comments on commit 341afb7

Please sign in to comment.