Skip to content

Commit

Permalink
iox-eclipse-iceoryx#391 changed include paths from utils to hoofs
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Killat <matthias.killat@apex.ai>
  • Loading branch information
MatthiasKillat committed May 17, 2021
1 parent 93276dd commit 4efb656
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions iceoryx_hoofs/include/iceoryx_hoofs/cxx/function.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#ifndef IOX_UTILS_FUNCTION_HPP
#define IOX_UTILS_FUNCTION_HPP

#include "iceoryx_utils/internal/cxx/static_storage.hpp"
#include "iceoryx_utils/internal/cxx/storable_function.hpp"
#include "iceoryx_hoofs/internal/cxx/static_storage.hpp"
#include "iceoryx_hoofs/internal/cxx/storable_function.hpp"

namespace iox
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ class static_storage
} // namespace cxx
} // namespace iox

#include "iceoryx_utils/internal/cxx/static_storage.inl"
#include "iceoryx_hoofs/internal/cxx/static_storage.inl"
#endif // IOX_UTILS_STATIC_STORAGE_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef IOX_UTILS_CXX_STATIC_STORAGE_INL
#define IOX_UTILS_CXX_STATIC_STORAGE_INL

#include "iceoryx_utils/internal/cxx/static_storage.hpp"
#include "iceoryx_hoofs/internal/cxx/static_storage.hpp"

namespace iox
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#ifndef IOX_UTILS_STORABLE_FUNCTION_HPP
#define IOX_UTILS_STORABLE_FUNCTION_HPP

#include "iceoryx_utils/cxx/type_traits.hpp"
#include "iceoryx_utils/internal/cxx/static_storage.hpp"
#include "iceoryx_hoofs/cxx/type_traits.hpp"
#include "iceoryx_hoofs/internal/cxx/static_storage.hpp"

#include <iostream>
#include <type_traits>
Expand Down Expand Up @@ -191,6 +191,6 @@ class storable_function<StorageType, signature<ReturnType, Args...>>
} // namespace cxx
} // namespace iox

#include "iceoryx_utils/internal/cxx/storable_function.inl"
#include "iceoryx_hoofs/internal/cxx/storable_function.inl"

#endif // IOX_UTILS_STORABLE_FUNCTION_HPP
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#ifndef IOX_UTILS_STORABLE_FUNCTION_INL
#define IOX_UTILS_STORABLE_FUNCTION_INL

#include "iceoryx_utils/internal/cxx/storable_function.hpp"
#include "iceoryx_utils/cxx/helplets.hpp"
#include "iceoryx_hoofs/cxx/helplets.hpp"
#include "iceoryx_hoofs/internal/cxx/storable_function.hpp"

namespace iox
{
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_hoofs/test/moduletests/test_cxx_function.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//
// SPDX-License-Identifier: Apache-2.0

#include "iceoryx_utils/cxx/function.hpp"
#include "iceoryx_hoofs/cxx/function.hpp"
#include "test.hpp"

#include <iostream>
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_hoofs/test/moduletests/test_static_storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//
// SPDX-License-Identifier: Apache-2.0

#include "iceoryx_utils/internal/cxx/static_storage.hpp"
#include "iceoryx_hoofs/internal/cxx/static_storage.hpp"
#include "test.hpp"

#include <iostream>
Expand Down

0 comments on commit 4efb656

Please sign in to comment.