aboutsummaryrefslogtreecommitdiffstats
path: root/src/vpp-api/vom/neighbour.cpp
diff options
context:
space:
mode:
authorNeale Ranns <nranns@cisco.com>2018-04-06 09:18:11 -0700
committerChris Luke <chris_luke@comcast.com>2018-04-18 14:23:57 +0000
commit6cdad6d8ff0378dbc5037bb4e52e5016eaf2596e (patch)
tree9c61c9034e4b8c50f33b51e024439776c0eed522 /src/vpp-api/vom/neighbour.cpp
parent332e0440a51ccc71356cd82b0908dee5f46ba155 (diff)
Fixes for 'make UNATTENDED=yes CC=clang CXX=clang verify'
Change-Id: I994649761fe2e66e12ae0e49a84fb1d0a966ddfb Signed-off-by: Neale Ranns <nranns@cisco.com> (cherry picked from commit 756cd9441752fc8f84104c9ee19099506ba89f85)
Diffstat (limited to 'src/vpp-api/vom/neighbour.cpp')
-rw-r--r--src/vpp-api/vom/neighbour.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vpp-api/vom/neighbour.cpp b/src/vpp-api/vom/neighbour.cpp
index 9b53cb2a6bb..44e2760a1ec 100644
--- a/src/vpp-api/vom/neighbour.cpp
+++ b/src/vpp-api/vom/neighbour.cpp
@@ -15,6 +15,7 @@
#include "vom/neighbour.hpp"
#include "vom/neighbour_cmds.hpp"
+#include "vom/singular_db_funcs.hpp"
namespace VOM {
singular_db<neighbour::key_t, neighbour> neighbour::m_db;
@@ -120,7 +121,7 @@ neighbour::singular() const
void
neighbour::dump(std::ostream& os)
{
- m_db.dump(os);
+ db_dump(m_db, os);
}
std::ostream&
@@ -203,7 +204,7 @@ neighbour::event_handler::order() const
void
neighbour::event_handler::show(std::ostream& os)
{
- m_db.dump(os);
+ db_dump(m_db, os);
}
}