remove using std
Change-Id: I268a92200a397f4fba0458f951f0a10b25ac0836
diff --git a/tools/ndncert-client.cpp b/tools/ndncert-client.cpp
index d77d65e..ed078a7 100644
--- a/tools/ndncert-client.cpp
+++ b/tools/ndncert-client.cpp
@@ -403,7 +403,7 @@
int validityPeriod = captureValidityPeriod();
auto now = time::system_clock::now();
std::cerr << "The validity period of your certificate will be: " << validityPeriod << " hours" << std::endl;
- requesterState = make_shared<RequesterState>(keyChain, profile, RequestType::NEW);
+ requesterState =std::make_shared<RequesterState>(keyChain, profile, RequestType::NEW);
auto interest = Requester::genNewInterest(*requesterState, identityName, now, now + time::hours(validityPeriod));
if (interest != nullptr) {
face.expressInterest(*interest, bind(&newCb, _2), bind(&onNackCb), bind(&timeoutCb));