commit | 9f5b01dfd8168cd6a065aad0cfd2f005c7fbb09d | [log] [tgz] |
---|---|---|
author | Junxiao Shi <git@mail1.yoursunny.com> | Fri Aug 05 03:54:28 2016 +0000 |
committer | Junxiao Shi <git@mail1.yoursunny.com> | Fri Aug 05 03:54:28 2016 +0000 |
tree | fe68030baa7b183d260ba40f5692385faede68b7 | |
parent | 38f4ce9f256ecee6ede456998083ffbbbcf1684c [diff] |
core: move common.hpp to core/ Headers in core/ are now included as `#include "core/*.hpp"`. This allows NFD to rely less on include paths when used as a submodule in another codebase, such as ndnSIM and NFD-Android. refs #3127 Change-Id: Ia38f3c97427e17ff7b5401281f1fe875b5d5313e
diff --git a/tests/daemon/face/dummy-receive-link-service.hpp b/tests/daemon/face/dummy-receive-link-service.hpp index 1d40653..389c0d9 100644 --- a/tests/daemon/face/dummy-receive-link-service.hpp +++ b/tests/daemon/face/dummy-receive-link-service.hpp
@@ -26,7 +26,7 @@ #ifndef NFD_TESTS_DAEMON_FACE_DUMMY_RECEIVE_LINK_SERVICE_HPP #define NFD_TESTS_DAEMON_FACE_DUMMY_RECEIVE_LINK_SERVICE_HPP -#include "common.hpp" +#include "core/common.hpp" #include "face/link-service.hpp"
diff --git a/tests/daemon/face/dummy-transport.hpp b/tests/daemon/face/dummy-transport.hpp index 4dfda76..951b1a5 100644 --- a/tests/daemon/face/dummy-transport.hpp +++ b/tests/daemon/face/dummy-transport.hpp
@@ -26,7 +26,7 @@ #ifndef NFD_TESTS_DAEMON_FACE_DUMMY_TRANSPORT_HPP #define NFD_TESTS_DAEMON_FACE_DUMMY_TRANSPORT_HPP -#include "common.hpp" +#include "core/common.hpp" #include "face/transport.hpp"
diff --git a/tests/daemon/mgmt/forwarder-status-manager.t.cpp b/tests/daemon/mgmt/forwarder-status-manager.t.cpp index c38482b..c267943 100644 --- a/tests/daemon/mgmt/forwarder-status-manager.t.cpp +++ b/tests/daemon/mgmt/forwarder-status-manager.t.cpp
@@ -24,7 +24,7 @@ */ #include "mgmt/forwarder-status-manager.hpp" -#include "version.hpp" +#include "core/version.hpp" #include "nfd-manager-common-fixture.hpp"