| Index: compiled/bindings/generator.h |
| =================================================================== |
| --- a/compiled/bindings/generator.h |
| +++ b/compiled/bindings/generator.h |
| @@ -114,17 +114,17 @@ namespace bindings_internal |
| struct FunctionInfo |
| { |
| TypeCategory returnType; |
| TYPEID pointerType; |
| std::vector<TypeCategory> args; |
| bool instance_function; |
| int effectiveArgs; |
| TypeCategory effectiveReturnType; |
| - char name[1024]; |
| + std::vector<char> name; |
|
sergei
2017/05/08 09:16:29
We are converting it later to std::string, I think
Wladimir Palant
2017/05/08 10:17:18
Done.
|
| FunctionInfo(); |
| FunctionInfo(TypeCategory returnType, TYPEID pointerType, |
| std::initializer_list<TypeCategory> argTypes, bool instance_function, |
| void* function); |
| template<typename ReturnType, typename... Args> |