diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2017-11-27 04:52:35 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-11-27 15:55:40 +0000 |
commit | 1d781558da28f72f5233c09835663aa3b42e2d97 (patch) | |
tree | 9e438be2145157c58e3ee1022788dc6f8dd34fb6 /src/vpp-api/vom/l3_binding.cpp | |
parent | 44c9f7e75f5d1a359672b7f94fc0ab34b1f093ca (diff) |
VOM: favour make_shared
Change-Id: I0c5e198049d510f3b3f9a6aefe49c315449768e3
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'src/vpp-api/vom/l3_binding.cpp')
-rw-r--r-- | src/vpp-api/vom/l3_binding.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vpp-api/vom/l3_binding.cpp b/src/vpp-api/vom/l3_binding.cpp index be7c9d1e24b..6ff824483ea 100644 --- a/src/vpp-api/vom/l3_binding.cpp +++ b/src/vpp-api/vom/l3_binding.cpp @@ -171,9 +171,9 @@ l3_binding::find(const interface& i) while (it != m_db.cend()) { /* - * The key in the DB is a pair of the interface's name and prefix. - * If the keys match, save the L3-config - */ + * The key in the DB is a pair of the interface's name and prefix. + * If the keys match, save the L3-config + */ auto key = it->first; if (i.key() == key.first) { @@ -202,8 +202,8 @@ void l3_binding::event_handler::handle_populate(const client_db::key_t& key) { /** - * This is done while populating the interfaces - */ + * This is done while populating the interfaces + */ } dependency_t |