Fix function name in cpp_basic_template_function test

Use "_wrap_" prefix to make the test compile and pass.
This commit is contained in:
Vadim Zeitlin 2016-04-20 18:49:43 +02:00
commit af9dd72bb6
2 changed files with 2 additions and 3 deletions

View file

@ -2,7 +2,7 @@
#include "cpp_basic_template_function/cpp_basic_template_function_wrap.h"
int main() {
assert(GetMaxInt(3, 5) == 5);
assert(_wrap_GetMaxInt(3, 5) == 5);
return 0;
}
}