commit | 0af4627ad73ac9c785154a6410c093dfedcb66f1 | [log] [tgz] |
---|---|---|
author | Ashlesh Gawande <agawande@memphis.edu> | Sat Dec 12 16:45:13 2020 -0500 |
committer | Ashlesh Gawande <agawande@memphis.edu> | Sat Dec 12 16:58:57 2020 -0500 |
tree | 8aa91a7013d8d3adb96fe5eef3a42c6866f34d54 | |
parent | e4edb3952cb3e9caf91fac8ae806d266cd3a4652 [diff] |
tools: fix compilation for ubuntu 16.04 Change-Id: Ifdbc43994e0060b67ffb94a72fdac026671a3be2
diff --git a/tools/nlsrc.cpp b/tools/nlsrc.cpp index aa02ed1..adeaeee 100644 --- a/tools/nlsrc.cpp +++ b/tools/nlsrc.cpp
@@ -273,7 +273,7 @@ void Nlsrc::fetchRtables() { - fetchFromRt<nlsr::RoutingTableStatus>([this] (const auto& rts) { recordRtable(rts); }); + fetchFromRt<nlsr::RoutingTableStatus>([this] (const auto& rts) { this->recordRtable(rts); }); } template <class T>