Skip to content

Commit

Permalink
Merge pull request #542 from elbeno/update-stdx
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevalenty authored May 7, 2024
2 parents d95fa3e + 11f1f8f commit 715cf88
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ add_versioned_package(
OPTIONS
"FMT_INSTALL OFF"
"FMT_OS OFF")
add_versioned_package("gh:intel/cpp-std-extensions#ec3deb3")
add_versioned_package("gh:intel/cpp-std-extensions#44bd39b")
add_versioned_package("gh:intel/cpp-baremetal-concurrency#8d49b6d")

add_library(cib INTERFACE)
Expand Down
2 changes: 1 addition & 1 deletion include/msg/detail/indexed_handler_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <msg/handler_interface.hpp>

#include <stdx/compiler.hpp>
#include <stdx/concepts.hpp>
#include <stdx/ranges.hpp>

namespace msg {

Expand Down
2 changes: 1 addition & 1 deletion include/msg/detail/rle_codec.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
namespace msg::detail {

template <std::size_t N>
using smallest_storage_type = decltype(stdx::detail::select_storage<N, void>());
using smallest_storage_type = decltype(stdx::smallest_uint<N, void>());

// Captures RLE data for decoding and provides a mechanism to
// get a single-use enumerator to step through bits in the encoded
Expand Down
2 changes: 1 addition & 1 deletion include/msg/field.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

#include <stdx/bit.hpp>
#include <stdx/compiler.hpp>
#include <stdx/concepts.hpp>
#include <stdx/ct_string.hpp>
#include <stdx/iterator.hpp>
#include <stdx/ranges.hpp>
#include <stdx/type_traits.hpp>

#include <algorithm>
Expand Down
1 change: 1 addition & 0 deletions include/msg/field_matchers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <sc/format.hpp>

#include <stdx/concepts.hpp>
#include <stdx/ranges.hpp>
#include <stdx/tuple.hpp>
#include <stdx/type_traits.hpp>

Expand Down
2 changes: 1 addition & 1 deletion include/msg/message.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
#include <sc/fwd.hpp>

#include <stdx/compiler.hpp>
#include <stdx/concepts.hpp>
#include <stdx/ct_string.hpp>
#include <stdx/cx_vector.hpp>
#include <stdx/iterator.hpp>
#include <stdx/ranges.hpp>
#include <stdx/span.hpp>
#include <stdx/tuple.hpp>
#include <stdx/tuple_algorithms.hpp>
Expand Down

0 comments on commit 715cf88

Please sign in to comment.