aboutsummaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2020-10-19 13:41:11 +0200
committerSven Gothel <[email protected]>2020-10-19 13:41:11 +0200
commit8e9402f99e5cba59f3a411ff337fb82cac38ffa1 (patch)
tree43826a2c59e4a629c23795e604234497d2ba9943 /api
parent821cb2c742e07afa7d223997e1a3b14615ed65d1 (diff)
DBTObject::toString(): Add missing override
Diffstat (limited to 'api')
-rw-r--r--api/direct_bt/DBTTypes.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/direct_bt/DBTTypes.hpp b/api/direct_bt/DBTTypes.hpp
index 5db1eba2..3fd1a2a2 100644
--- a/api/direct_bt/DBTTypes.hpp
+++ b/api/direct_bt/DBTTypes.hpp
@@ -66,7 +66,7 @@ namespace direct_bt {
}
public:
- virtual std::string toString() const noexcept { return "DBTObject["+aptrHexString(this)+"]"; }
+ virtual std::string toString() const noexcept override { return "DBTObject["+aptrHexString(this)+"]"; }
virtual ~DBTObject() noexcept {
valid = false;