We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b5bcba + 672649d commit 408fd39Copy full SHA for 408fd39
iceoryx_hoofs/legacy/include/iceoryx_hoofs/iceoryx_hoofs_types.hpp
@@ -20,6 +20,8 @@
20
#include "iox/detail/deprecation_marker.hpp"
21
#include "iox/iceoryx_hoofs_types.hpp"
22
23
+#include <cstddef>
24
+
25
IOX_DEPRECATED_HEADER_SINCE(3, "Please include 'iox/iceoryx_hoofs_types.hpp' instead.")
26
27
namespace iox
@@ -29,7 +31,7 @@ namespace iox
29
31
namespace cxx
30
32
{
33
/// @deprecated use 'std::byte' instead of 'iox::cxx::byte_t'
-using byte_t IOX_DEPRECATED_SINCE(3, "Please use 'std::byte' instead.") = byte;
34
+using byte_t IOX_DEPRECATED_SINCE(3, "Please use 'std::byte' instead.") = std::byte;
35
36
} // namespace cxx
37
namespace log
0 commit comments