Use more C++17 features
Mainly structured bindings, inline variables, and class template
argument deduction, plus many more smaller things.
Change-Id: I810d17e0adb470426e4e30c898e03b3140ad052f
diff --git a/daemon/mgmt/rib-manager.hpp b/daemon/mgmt/rib-manager.hpp
index ac2a324..ec2394d 100644
--- a/daemon/mgmt/rib-manager.hpp
+++ b/daemon/mgmt/rib-manager.hpp
@@ -240,7 +240,7 @@
onNotification(const ndn::nfd::FaceEventNotification& notification);
public:
- static const Name LOCALHOP_TOP_PREFIX;
+ static inline const Name LOCALHOP_TOP_PREFIX{"/localhop/nfd"};
private:
rib::Rib& m_rib;