Skip to content

Commit 1b9030f

Browse files
iox-#1391 Use absolute include paths, adapt deprecating
Signed-off-by: Marika Lehmann <[email protected]>
1 parent 55d8a1d commit 1b9030f

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

iceoryx_hoofs/design/include/iox/detail/newtype/comparable.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
// SPDX-License-Identifier: Apache-2.0
1717
#ifndef IOX_HOOFS_DESIGN_NEWTYPE_COMPARABLE_HPP
1818
#define IOX_HOOFS_DESIGN_NEWTYPE_COMPARABLE_HPP
19-
#include "internal.hpp"
19+
20+
#include "iox/detail/newtype/internal.hpp"
2021

2122
namespace iox
2223
{

iceoryx_hoofs/design/include/iox/detail/newtype/sortable.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
// SPDX-License-Identifier: Apache-2.0
1717
#ifndef IOX_HOOFS_DESIGN_NEWTYPE_SORTABLE_HPP
1818
#define IOX_HOOFS_DESIGN_NEWTYPE_SORTABLE_HPP
19-
#include "internal.hpp"
19+
20+
#include "iox/detail/newtype/internal.hpp"
2021

2122
namespace iox
2223
{

iceoryx_hoofs/design/include/iox/newtype.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
#ifndef IOX_HOOFS_DESIGN_NEWTYPE_HPP
1818
#define IOX_HOOFS_DESIGN_NEWTYPE_HPP
1919

20-
#include "detail/newtype/assignment.hpp"
21-
#include "detail/newtype/comparable.hpp"
22-
#include "detail/newtype/constructor.hpp"
23-
#include "detail/newtype/convertable.hpp"
24-
#include "detail/newtype/internal.hpp"
25-
#include "detail/newtype/protected_constructor.hpp"
26-
#include "detail/newtype/sortable.hpp"
2720
#include "iceoryx_hoofs/cxx/algorithm.hpp"
21+
#include "iox/detail/newtype/assignment.hpp"
22+
#include "iox/detail/newtype/comparable.hpp"
23+
#include "iox/detail/newtype/constructor.hpp"
24+
#include "iox/detail/newtype/convertable.hpp"
25+
#include "iox/detail/newtype/internal.hpp"
26+
#include "iox/detail/newtype/protected_constructor.hpp"
27+
#include "iox/detail/newtype/sortable.hpp"
2828

2929
namespace iox
3030
{

iceoryx_hoofs/legacy/include/iceoryx_hoofs/design_pattern/builder.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#define IOX_HOOFS_DESIGN_PATTERN_BUILDER_HPP
1919

2020
#include "iox/builder.hpp"
21-
/// @todo iox-#1593 Deprecate include
22-
/// [[deprecated("Deprecated in 3.0, removed in 4.0, please include 'iox/builder.hpp' instead")]]
21+
/// @deprecated please include 'iox/builder.hpp' instead of 'iceoryx_hoofs/design_pattern/builder.hpp'
2322

2423
#endif

0 commit comments

Comments
 (0)