From 453db290582591dd4ba25f2619877451aaecdbd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Sat, 13 Apr 2019 20:43:57 -0400 Subject: [PATCH] dht: add override to getNodeId --- include/opendht/dht.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/opendht/dht.h b/include/opendht/dht.h index 4fb8cbb6..5e420f84 100644 --- a/include/opendht/dht.h +++ b/include/opendht/dht.h @@ -74,7 +74,7 @@ public: /** * Get the ID of the node. */ - inline const InfoHash& getNodeId() const { return myid; } + inline const InfoHash& getNodeId() const override { return myid; } /** * Get the current status of the node for the given family. -- GitLab