From 644d7f0ee381773f65f00902d12021eaacd0a71f Mon Sep 17 00:00:00 2001 From: Korobeinikov Evgeny Date: Wed, 5 Feb 2025 16:33:01 +0300 Subject: [PATCH] return value from signature.cc --- interop/src/cpp/types/signatures.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interop/src/cpp/types/signatures.cc b/interop/src/cpp/types/signatures.cc index 9e16aa586..3c7b315da 100644 --- a/interop/src/cpp/types/signatures.cc +++ b/interop/src/cpp/types/signatures.cc @@ -78,6 +78,7 @@ std::string sigType(const std::string &type) { KOALA_INTEROP_TYPEDEFS("sigType", "jni") #endif fprintf(stderr, "Unhandled type: %s\n", type.c_str()); + return type; } std::string codeType(const std::string &type) { @@ -87,6 +88,7 @@ std::string codeType(const std::string &type) { KOALA_INTEROP_TYPEDEFS("codeType", "jni") #endif fprintf(stderr, "Unhandled type: %s\n", type.c_str()); + return type; } std::string convertType(const char* name, const char* koalaType) { -- Gitee