Added using namespace ndn::ptr_lib and remove ptr_lib::
diff --git a/ndn-cpp/sha256-with-rsa-signature.cpp b/ndn-cpp/sha256-with-rsa-signature.cpp
index aad9c9f..c2c933f 100644
--- a/ndn-cpp/sha256-with-rsa-signature.cpp
+++ b/ndn-cpp/sha256-with-rsa-signature.cpp
@@ -7,13 +7,14 @@
#include "sha256-with-rsa-signature.hpp"
using namespace std;
+using namespace ndn::ptr_lib;
namespace ndn {
-ptr_lib::shared_ptr<Signature>
+shared_ptr<Signature>
Sha256WithRsaSignature::clone() const
{
- return ptr_lib::shared_ptr<Signature>(new Sha256WithRsaSignature(*this));
+ return shared_ptr<Signature>(new Sha256WithRsaSignature(*this));
}
void