diff options
author | Sven Gothel <[email protected]> | 2022-05-05 09:45:28 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-05-05 09:45:28 +0200 |
commit | d3d857981b9504f5b7fc9993f8671fd9e6b1096d (patch) | |
tree | 78623c539176a4bbb0b0eed96550a668d12a0cb7 /api/direct_bt/DBGattServer.hpp | |
parent | b1302d9735f1b61ce004250e52ab40d34b4ccc62 (diff) |
JavaUplink Derivations: Match virtual signature with override (requirement to JavaUplink super class) instead of virtual and honor noexcept - don't inline overrides
JavaUplink Specializations Involved:
- BTAdapter
- BTDevice
- BTManager
Diffstat (limited to 'api/direct_bt/DBGattServer.hpp')
-rw-r--r-- | api/direct_bt/DBGattServer.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/api/direct_bt/DBGattServer.hpp b/api/direct_bt/DBGattServer.hpp index a7fb0c73..32a3e347 100644 --- a/api/direct_bt/DBGattServer.hpp +++ b/api/direct_bt/DBGattServer.hpp @@ -139,7 +139,7 @@ namespace direct_bt { return java_class(); } - ~DBGattDesc() { + ~DBGattDesc() noexcept override { JAU_TRACE_DBGATT_PRINT("DBGattDesc dtor0: %p", this); } @@ -345,7 +345,7 @@ namespace direct_bt { return java_class(); } - ~DBGattChar() { + ~DBGattChar() noexcept override { JAU_TRACE_DBGATT_PRINT("DBGattChar dtor0: %p", this); } @@ -543,7 +543,7 @@ namespace direct_bt { return java_class(); } - ~DBGattService() { + ~DBGattService() noexcept override { JAU_TRACE_DBGATT_PRINT("DBGattService dtor0: %p", this); } @@ -826,7 +826,7 @@ namespace direct_bt { return java_class(); } - ~DBGattServer() { + ~DBGattServer() noexcept override { #ifdef JAU_TRACE_DBGATT JAU_TRACE_DBGATT_PRINT("DBGattServer dtor0: %p", this); jau::print_backtrace(true); |