commit | e422f9e1e90f423b33d351b7b732c44a86af41ad | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davidepesa@gmail.com> | Fri Jun 03 01:30:23 2022 -0400 |
committer | Davide Pesavento <davidepesa@gmail.com> | Sat Jun 11 20:10:26 2022 -0400 |
tree | 848a4b8793a0504f61722baf00fd76188ad55765 | |
parent | a3a7a4e3308afde48e9fe80c17b9168f302cfcfd [diff] [blame] |
Refactor and modernize namespace declarations Move all unit tests to namespace nfd::tests Delete unused header core/algorithm.hpp Change-Id: I5591f0c5f3bb5db67f8b45fae95471f8a555ca68
diff --git a/daemon/rib/readvertise/client-to-nlsr-readvertise-policy.cpp b/daemon/rib/readvertise/client-to-nlsr-readvertise-policy.cpp index 7aff618..dcce60a 100644 --- a/daemon/rib/readvertise/client-to-nlsr-readvertise-policy.cpp +++ b/daemon/rib/readvertise/client-to-nlsr-readvertise-policy.cpp
@@ -25,8 +25,7 @@ #include "client-to-nlsr-readvertise-policy.hpp" -namespace nfd { -namespace rib { +namespace nfd::rib { std::optional<ReadvertiseAction> ClientToNlsrReadvertisePolicy::handleNewRoute(const RibRouteRef& ribRoute) const @@ -45,5 +44,4 @@ return 1_h; } -} // namespace rib -} // namespace nfd +} // namespace nfd::rib