From 6e9b625b811a23c1032ba684e32170dcc9100c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=95=8F=E6=9D=B0?= Date: Fri, 8 Aug 2025 13:32:33 +0000 Subject: [PATCH 1/6] x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴敏杰 --- test/sa_test/type_single_unsigned_fd/target_cpp/foo_proxy.h.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sa_test/type_single_unsigned_fd/target_cpp/foo_proxy.h.txt b/test/sa_test/type_single_unsigned_fd/target_cpp/foo_proxy.h.txt index f161122..6bbd65d 100644 --- a/test/sa_test/type_single_unsigned_fd/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_single_unsigned_fd/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode uchar_test_func( -- Gitee From 60ef0e33a929ad2a332b03acacd6d9dbbd82884e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=95=8F=E6=9D=B0?= Date: Fri, 8 Aug 2025 13:55:54 +0000 Subject: [PATCH 2/6] daimachayi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴敏杰 --- .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md | 6 +----- ast/ast_type.cpp | 4 ++-- .../target_cpp/app_fwk_update_service_proxy.h.txt | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md index 4c1372c..00fc217 100644 --- a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md +++ b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md @@ -51,8 +51,4 @@ **TDD Result**: -**XTS Result**: - -### 是否已执行L0用例 -- [ ] 已验证 -- [ ] 不涉及。如不涉及,请写明理由 +**XTS Result**: \ No newline at end of file diff --git a/ast/ast_type.cpp b/ast/ast_type.cpp index c823bf0..c3ec076 100644 --- a/ast/ast_type.cpp +++ b/ast/ast_type.cpp @@ -32,9 +32,9 @@ void ASTType::SetNamespace(ASTNamespace* nspace) namespace_ = nspace; } -ASTNamespace* ASTType::GetNamespace() +AutoPtr ASTType::GetNamespace() { - return namespace_; + return AutoPtr(namespace_); } bool ASTType::IsBooleanType() diff --git a/test/sa_test/in_use_idl/target_cpp/app_fwk_update_service_proxy.h.txt b/test/sa_test/in_use_idl/target_cpp/app_fwk_update_service_proxy.h.txt index a3be1af..abef8b2 100644 --- a/test/sa_test/in_use_idl/target_cpp/app_fwk_update_service_proxy.h.txt +++ b/test/sa_test/in_use_idl/target_cpp/app_fwk_update_service_proxy.h.txt @@ -29,7 +29,7 @@ public: : IRemoteProxy(remote) {} - virtual ~AppFwkUpdateServiceProxy() override + virtual ~AppFwkUpdateServiceProxy() {} ErrCode VerifyPackageInstall( -- Gitee From 9ab18845ea2ac11092842d906c857da6b0c01e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=95=8F=E6=9D=B0?= Date: Fri, 8 Aug 2025 13:56:07 +0000 Subject: [PATCH 3/6] dai MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴敏杰 --- ast/ast_type.h | 2 +- test/sa_test/in_use_idl/target_cpp/esim_service_proxy.h.txt | 2 +- .../type_import/target_file/fcallback/callback_proxy.h.txt | 2 +- test/sa_test/type_set/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/type_single/target_cpp/foo_proxy.h.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ast/ast_type.h b/ast/ast_type.h index 32aa50e..b8b7a3f 100644 --- a/ast/ast_type.h +++ b/ast/ast_type.h @@ -31,7 +31,7 @@ public: virtual void SetNamespace(ASTNamespace* nspace); - virtual ASTNamespace* GetNamespace(); + virtual AutoPtr GetNamespace(); virtual String GetSignature() = 0; diff --git a/test/sa_test/in_use_idl/target_cpp/esim_service_proxy.h.txt b/test/sa_test/in_use_idl/target_cpp/esim_service_proxy.h.txt index 7dc97bb..76afbe8 100644 --- a/test/sa_test/in_use_idl/target_cpp/esim_service_proxy.h.txt +++ b/test/sa_test/in_use_idl/target_cpp/esim_service_proxy.h.txt @@ -29,7 +29,7 @@ public: : IRemoteProxy(remote) {} - virtual ~EsimServiceProxy() override + virtual ~EsimServiceProxy() {} ErrCode GetEid( diff --git a/test/sa_test/type_import/target_file/fcallback/callback_proxy.h.txt b/test/sa_test/type_import/target_file/fcallback/callback_proxy.h.txt index c3e5ac6..8ca2a92 100644 --- a/test/sa_test/type_import/target_file/fcallback/callback_proxy.h.txt +++ b/test/sa_test/type_import/target_file/fcallback/callback_proxy.h.txt @@ -29,7 +29,7 @@ public: : IRemoteProxy(remote) {} - virtual ~CallbackProxy() override + virtual ~CallbackProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/type_set/target_cpp/foo_proxy.h.txt b/test/sa_test/type_set/target_cpp/foo_proxy.h.txt index ae3343f..0828a5b 100644 --- a/test/sa_test/type_set/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_set/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode bool_test_func( diff --git a/test/sa_test/type_single/target_cpp/foo_proxy.h.txt b/test/sa_test/type_single/target_cpp/foo_proxy.h.txt index 533130b..a864307 100644 --- a/test/sa_test/type_single/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_single/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; -- Gitee From 1de60595602500455d14d12f779429f842e084e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=95=8F=E6=9D=B0?= Date: Fri, 8 Aug 2025 13:56:26 +0000 Subject: [PATCH 4/6] daima MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴敏杰 --- .../support_option_parcel_hooks/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/type_array/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/type_import/target_file/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/type_list/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/type_map/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/type_orderedmap/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/type_ptr/target_cpp/foo_proxy.h.txt | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/sa_test/support_option_parcel_hooks/target_cpp/foo_proxy.h.txt b/test/sa_test/support_option_parcel_hooks/target_cpp/foo_proxy.h.txt index ee397b5..92e7199 100644 --- a/test/sa_test/support_option_parcel_hooks/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/support_option_parcel_hooks/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/type_array/target_cpp/foo_proxy.h.txt b/test/sa_test/type_array/target_cpp/foo_proxy.h.txt index 03b50df..1a060ee 100644 --- a/test/sa_test/type_array/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_array/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/type_import/target_file/target_cpp/foo_proxy.h.txt b/test/sa_test/type_import/target_file/target_cpp/foo_proxy.h.txt index 4607aef..dcb4902 100644 --- a/test/sa_test/type_import/target_file/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_import/target_file/target_cpp/foo_proxy.h.txt @@ -33,7 +33,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode enum_test_func( diff --git a/test/sa_test/type_list/target_cpp/foo_proxy.h.txt b/test/sa_test/type_list/target_cpp/foo_proxy.h.txt index 39ef6a5..c13f731 100644 --- a/test/sa_test/type_list/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_list/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode bool_test_func( diff --git a/test/sa_test/type_map/target_cpp/foo_proxy.h.txt b/test/sa_test/type_map/target_cpp/foo_proxy.h.txt index d940006..82fb3de 100644 --- a/test/sa_test/type_map/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_map/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/type_orderedmap/target_cpp/foo_proxy.h.txt b/test/sa_test/type_orderedmap/target_cpp/foo_proxy.h.txt index fe97794..6bc8344 100644 --- a/test/sa_test/type_orderedmap/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_orderedmap/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/type_ptr/target_cpp/foo_proxy.h.txt b/test/sa_test/type_ptr/target_cpp/foo_proxy.h.txt index 3845889..7399525 100644 --- a/test/sa_test/type_ptr/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/type_ptr/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode sharedptr_seq_func( -- Gitee From bea50a0e42f9e125e33f7114ff6d42d35c0ee6fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=95=8F=E6=9D=B0?= Date: Fri, 8 Aug 2025 13:56:37 +0000 Subject: [PATCH 5/6] d MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴敏杰 --- .../keyword_cacheable_test_001/target_cpp/foo_proxy.h.txt | 2 +- .../keyword_cacheable_test_002/target_cpp/foo_proxy.h.txt | 2 +- .../keyword_custom_msg_option/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/keyword_import_dir/target_cpp/foo_proxy.h.txt | 2 +- .../keyword_ipccapacity_test_001/target_cpp/foo_proxy.h.txt | 2 +- .../sa_test/keyword_ipccode_test_001/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/keyword_oneway/target_cpp/foo_proxy.h.txt | 2 +- test/sa_test/overloadfun_test/target_cpp/foo_proxy.h.txt | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/sa_test/keyword_cacheable_test_001/target_cpp/foo_proxy.h.txt b/test/sa_test/keyword_cacheable_test_001/target_cpp/foo_proxy.h.txt index f903807..4cdc80a 100644 --- a/test/sa_test/keyword_cacheable_test_001/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/keyword_cacheable_test_001/target_cpp/foo_proxy.h.txt @@ -55,7 +55,7 @@ public: } } - virtual ~FooProxy() override + virtual ~FooProxy() { if (remote_ == nullptr) { return; diff --git a/test/sa_test/keyword_cacheable_test_002/target_cpp/foo_proxy.h.txt b/test/sa_test/keyword_cacheable_test_002/target_cpp/foo_proxy.h.txt index 90287ee..74c36ec 100644 --- a/test/sa_test/keyword_cacheable_test_002/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/keyword_cacheable_test_002/target_cpp/foo_proxy.h.txt @@ -49,7 +49,7 @@ public: } } - virtual ~FooProxy() override + virtual ~FooProxy() { if (remote_ == nullptr) { return; diff --git a/test/sa_test/keyword_custom_msg_option/target_cpp/foo_proxy.h.txt b/test/sa_test/keyword_custom_msg_option/target_cpp/foo_proxy.h.txt index e9e615f..25313f7 100644 --- a/test/sa_test/keyword_custom_msg_option/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/keyword_custom_msg_option/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func1() override; diff --git a/test/sa_test/keyword_import_dir/target_cpp/foo_proxy.h.txt b/test/sa_test/keyword_import_dir/target_cpp/foo_proxy.h.txt index be463bd..87462fa 100644 --- a/test/sa_test/keyword_import_dir/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/keyword_import_dir/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode seq_test_func( diff --git a/test/sa_test/keyword_ipccapacity_test_001/target_cpp/foo_proxy.h.txt b/test/sa_test/keyword_ipccapacity_test_001/target_cpp/foo_proxy.h.txt index b77afa0..faccd22 100644 --- a/test/sa_test/keyword_ipccapacity_test_001/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/keyword_ipccapacity_test_001/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode bool_test_func( diff --git a/test/sa_test/keyword_ipccode_test_001/target_cpp/foo_proxy.h.txt b/test/sa_test/keyword_ipccode_test_001/target_cpp/foo_proxy.h.txt index 9cb6d53..43691ac 100644 --- a/test/sa_test/keyword_ipccode_test_001/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/keyword_ipccode_test_001/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/keyword_oneway/target_cpp/foo_proxy.h.txt b/test/sa_test/keyword_oneway/target_cpp/foo_proxy.h.txt index af48b62..86b15c9 100644 --- a/test/sa_test/keyword_oneway/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/keyword_oneway/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/overloadfun_test/target_cpp/foo_proxy.h.txt b/test/sa_test/overloadfun_test/target_cpp/foo_proxy.h.txt index dd3df68..17d6256 100644 --- a/test/sa_test/overloadfun_test/target_cpp/foo_proxy.h.txt +++ b/test/sa_test/overloadfun_test/target_cpp/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} #ifndef WATCHER -- Gitee From 3acb519cfc5c888afa07f36ba76567537a34a5d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=95=8F=E6=9D=B0?= Date: Fri, 8 Aug 2025 13:56:41 +0000 Subject: [PATCH 6/6] d MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴敏杰 --- .../codegen/SA/cpp/sa_cpp_client_proxy_code_emitter.cpp | 2 +- idl_tool_2/util/options.cpp | 4 ---- .../cmd_client_enable_log_tag_domainid/target/foo_proxy.h.txt | 2 +- test/sa_test/cmd_hitrace_tag/target/foo_proxy.h.txt | 2 +- test/sa_test/cmd_save_metadata/target/foo_proxy.h.txt | 2 +- .../in_use_idl/target_cpp/idl_test_service_proxy.h.txt | 2 +- .../in_use_idl/target_cpp/quick_fix_manager_proxy.h.txt | 2 +- .../in_use_idl/target_cpp/test_server_interface_proxy.h.txt | 2 +- .../target_file/target_cpp/callback/foocallback_proxy.h.txt | 2 +- 9 files changed, 8 insertions(+), 12 deletions(-) diff --git a/idl_tool_2/codegen/SA/cpp/sa_cpp_client_proxy_code_emitter.cpp b/idl_tool_2/codegen/SA/cpp/sa_cpp_client_proxy_code_emitter.cpp index 82422df..23c701d 100644 --- a/idl_tool_2/codegen/SA/cpp/sa_cpp_client_proxy_code_emitter.cpp +++ b/idl_tool_2/codegen/SA/cpp/sa_cpp_client_proxy_code_emitter.cpp @@ -163,7 +163,7 @@ void SaCppClientProxyCodeEmitter::EmitInterfaceProxyConstructor(StringBuilder &s sb.Append(prefix).Append("{}\n"); } sb.Append("\n"); - sb.Append(prefix).AppendFormat("virtual ~%s() override\n", proxyName_.c_str()); + sb.Append(prefix).AppendFormat("virtual ~%s()\n", proxyName_.c_str()); if (ast_->GetHasCacheableProxyMethods()) { EmitInterfaceProxyUnRegisterDeathRecipient(sb, prefix); } else { diff --git a/idl_tool_2/util/options.cpp b/idl_tool_2/util/options.cpp index 551a903..e521d4e 100644 --- a/idl_tool_2/util/options.cpp +++ b/idl_tool_2/util/options.cpp @@ -63,10 +63,6 @@ Options &Options::GetInstance() bool Options::Parse(int argc, char *argv[]) { - if (argv == nullptr) { - Logger::E(TAG, "argv is NULL"); - return false; - } int ret = true; program = argv[0]; opterr = 0; diff --git a/test/sa_test/cmd_client_enable_log_tag_domainid/target/foo_proxy.h.txt b/test/sa_test/cmd_client_enable_log_tag_domainid/target/foo_proxy.h.txt index afb4e37..950e7da 100644 --- a/test/sa_test/cmd_client_enable_log_tag_domainid/target/foo_proxy.h.txt +++ b/test/sa_test/cmd_client_enable_log_tag_domainid/target/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func1() override; diff --git a/test/sa_test/cmd_hitrace_tag/target/foo_proxy.h.txt b/test/sa_test/cmd_hitrace_tag/target/foo_proxy.h.txt index 0d41f0d..477d1aa 100644 --- a/test/sa_test/cmd_hitrace_tag/target/foo_proxy.h.txt +++ b/test/sa_test/cmd_hitrace_tag/target/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/cmd_save_metadata/target/foo_proxy.h.txt b/test/sa_test/cmd_save_metadata/target/foo_proxy.h.txt index 0d41f0d..477d1aa 100644 --- a/test/sa_test/cmd_save_metadata/target/foo_proxy.h.txt +++ b/test/sa_test/cmd_save_metadata/target/foo_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FooProxy() override + virtual ~FooProxy() {} ErrCode void_test_func() override; diff --git a/test/sa_test/in_use_idl/target_cpp/idl_test_service_proxy.h.txt b/test/sa_test/in_use_idl/target_cpp/idl_test_service_proxy.h.txt index c2c3fc2..6cde7b1 100644 --- a/test/sa_test/in_use_idl/target_cpp/idl_test_service_proxy.h.txt +++ b/test/sa_test/in_use_idl/target_cpp/idl_test_service_proxy.h.txt @@ -28,7 +28,7 @@ public: : IRemoteProxy(remote) {} - virtual ~IdlTestServiceProxy() override + virtual ~IdlTestServiceProxy() {} ErrCode TestIntTransaction( diff --git a/test/sa_test/in_use_idl/target_cpp/quick_fix_manager_proxy.h.txt b/test/sa_test/in_use_idl/target_cpp/quick_fix_manager_proxy.h.txt index 4f8aa19..1695016 100644 --- a/test/sa_test/in_use_idl/target_cpp/quick_fix_manager_proxy.h.txt +++ b/test/sa_test/in_use_idl/target_cpp/quick_fix_manager_proxy.h.txt @@ -29,7 +29,7 @@ public: : IRemoteProxy(remote) {} - virtual ~QuickFixManagerProxy() override + virtual ~QuickFixManagerProxy() {} ErrCode ApplyQuickFix( diff --git a/test/sa_test/in_use_idl/target_cpp/test_server_interface_proxy.h.txt b/test/sa_test/in_use_idl/target_cpp/test_server_interface_proxy.h.txt index ece2033..b374d88 100644 --- a/test/sa_test/in_use_idl/target_cpp/test_server_interface_proxy.h.txt +++ b/test/sa_test/in_use_idl/target_cpp/test_server_interface_proxy.h.txt @@ -29,7 +29,7 @@ public: : IRemoteProxy(remote) {} - virtual ~TestServerInterfaceProxy() override + virtual ~TestServerInterfaceProxy() {} ErrCode CreateSession( diff --git a/test/sa_test/type_import/target_file/target_cpp/callback/foocallback_proxy.h.txt b/test/sa_test/type_import/target_file/target_cpp/callback/foocallback_proxy.h.txt index 93d0a86..56bd971 100644 --- a/test/sa_test/type_import/target_file/target_cpp/callback/foocallback_proxy.h.txt +++ b/test/sa_test/type_import/target_file/target_cpp/callback/foocallback_proxy.h.txt @@ -31,7 +31,7 @@ public: : IRemoteProxy(remote) {} - virtual ~FoocallbackProxy() override + virtual ~FoocallbackProxy() {} ErrCode void_test_func() override; -- Gitee