Fixing usages of ptr_lib::shared_ptr
In certain cases, importing both std:: and ndn::ptr_lib namespaces
causes ambiguity for shared_ptr type.
Change-Id: Iddc02353e1615b2387277c56185a1dd873d54459
diff --git a/include/ndn-cpp/c/common.h b/include/ndn-cpp/c/common.h
index c1706d5..d3d2f60 100644
--- a/include/ndn-cpp/c/common.h
+++ b/include/ndn-cpp/c/common.h
@@ -7,7 +7,8 @@
#ifndef NDN_COMMON_H
#define NDN_COMMON_H
-#include "../ndn-cpp-config.h"
+#include <ndn-cpp/ndn-cpp-config.h>
+
#include <stdint.h>
// TODO: Is stddef.h portable?
#include <stddef.h>