Always build in C++11 mode
refs: #1930
Change-Id: Iedad4a814e5c7e6a5486f2f7e16c45c356131792
diff --git a/nsync/sync-logic.h b/nsync/sync-logic.h
index 25c3aae..e43a9ac 100644
--- a/nsync/sync-logic.h
+++ b/nsync/sync-logic.h
@@ -63,9 +63,9 @@
class SyncLogic
{
public:
- typedef boost::function< void (const std::vector<MissingDataInfo> & ) > LogicUpdateCallback;
- typedef boost::function< void (const std::string &/*prefix*/ ) > LogicRemoveCallback;
- typedef boost::function< void (const std::string &)> LogicPerBranchCallback;
+ typedef function< void (const std::vector<MissingDataInfo> & ) > LogicUpdateCallback;
+ typedef function< void (const std::string &/*prefix*/ ) > LogicRemoveCallback;
+ typedef function< void (const std::string &)> LogicPerBranchCallback;
/**
* @brief Constructor
@@ -156,7 +156,7 @@
void
satisfyPendingSyncInterests (DiffStateConstPtr diff);
- boost::tuple<DigestConstPtr, std::string>
+ tuple<DigestConstPtr, std::string>
convertNameToDigestAndType (const ndn::Name &name);
void