| 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::string name; |
| FunctionInfo(); |
| FunctionInfo(TypeCategory returnType, TYPEID pointerType, |
| std::initializer_list<TypeCategory> argTypes, bool instance_function, |
| void* function); |
| template<typename ReturnType, typename... Args> |