nlsr: Don't use ndn aliases provided by ndn-cxx/common.hpp
refs: #3983
Change-Id: I31da8d68e0285dcfe9c7d3e5e678c00397d22bef
diff --git a/src/communication/sync-logic-handler.hpp b/src/communication/sync-logic-handler.hpp
index 955a9c1..5e0e6a8 100644
--- a/src/communication/sync-logic-handler.hpp
+++ b/src/communication/sync-logic-handler.hpp
@@ -29,6 +29,7 @@
#include <iostream>
#include <unistd.h>
#include <boost/cstdint.hpp>
+#include <boost/throw_exception.hpp>
#include "test-access-control.hpp"
@@ -90,9 +91,9 @@
publishSyncUpdate(const ndn::Name& updatePrefix, uint64_t seqNo);
private:
- ndn::shared_ptr<ndn::ValidatorNull> m_validator;
+ std::shared_ptr<ndn::ValidatorNull> m_validator;
ndn::Face& m_syncFace;
- ndn::shared_ptr<Sync::SyncSocket> m_syncSocket;
+ std::shared_ptr<Sync::SyncSocket> m_syncSocket;
ndn::Name m_syncPrefix;
private:
@@ -111,4 +112,4 @@
} // namespace nlsr
-#endif //NLSR_SYNC_LOGIC_HANDLER_HPP
+#endif // NLSR_SYNC_LOGIC_HANDLER_HPP