build: == Dependency change == NLSR now depends on ndn-cxx library
Refs: #1535
Change-Id: I4c7c0c3dcfcac6ee91648a46c07e426adbb5bd20
diff --git a/src/utility/tokenizer.cpp b/src/utility/tokenizer.cpp
index e326c2a..52473b2 100644
--- a/src/utility/tokenizer.cpp
+++ b/src/utility/tokenizer.cpp
@@ -4,6 +4,8 @@
#include <string>
#include <algorithm>
+#include <ndn-cxx/face.hpp>
+
#include "tokenizer.hpp"
namespace nlsr {
@@ -98,7 +100,7 @@
{
std::list<string>::iterator it = std::find_if(m_tokenList.begin(),
m_tokenList.end(),
- bind(&tokenCompare, _1 , token));
+ ndn::bind(&tokenCompare, _1 , token));
if (it != m_tokenList.end())
{
return true;