From 2550a5e45cb3bec626ee6108f12e0d543ff58e2f Mon Sep 17 00:00:00 2001 From: huyx Date: Wed, 22 May 2024 19:30:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=91=8A=E8=AD=A6=E8=A7=A3=E5=86=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: huyx --- bundle.json | 2 +- .../tools/hdi-gen/codegen/cpp_client_proxy_code_emitter.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bundle.json b/bundle.json index c177d5d52..8c9c7494f 100644 --- a/bundle.json +++ b/bundle.json @@ -18,7 +18,7 @@ "hdf_core_platform_rtc_test_support", "hdf_core_feature_config" ], - "adapted_system_type": ["standard", "small"], + "adapted_system_type": ["standard", "small", "mini"], "rom": "735KB", "ram": "1350KB", "deps": { diff --git a/framework/tools/hdi-gen/codegen/cpp_client_proxy_code_emitter.cpp b/framework/tools/hdi-gen/codegen/cpp_client_proxy_code_emitter.cpp index 21fed674d..7952791f5 100644 --- a/framework/tools/hdi-gen/codegen/cpp_client_proxy_code_emitter.cpp +++ b/framework/tools/hdi-gen/codegen/cpp_client_proxy_code_emitter.cpp @@ -247,7 +247,6 @@ void CppClientProxyCodeEmitter::EmitProxyStaticMethodDecl( void CppClientProxyCodeEmitter::EmitProxyReconnectMethodDecl(StringBuilder &sb, const std::string &prefix) const { - std::string doubleTab = prefix + TAB; sb.Append(prefix).AppendFormat("static int32_t Reconnect(sptr<%s> proxy);\n", EmitDefinitionByInterface(interface_, proxyName_).c_str()); } -- Gitee