Skip to content

Commit 1745660

Browse files
committed
⬆️ Update stdx
Problem: - `stdx` added a breaking change, viz. the ct_string format result always being returned from `ct_format`. Solution: - Update code to deal with that.
1 parent 3232be1 commit 1745660

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ include(cmake/string_catalog.cmake)
2525
add_versioned_package("gh:boostorg/mp11#boost-1.83.0")
2626
fmt_recipe(10.2.1)
2727
add_versioned_package("gh:intel/cpp-baremetal-concurrency#7c5b26c")
28-
add_versioned_package("gh:intel/cpp-std-extensions#4d57b2e")
28+
add_versioned_package("gh:intel/cpp-std-extensions#2834680")
2929
add_versioned_package("gh:intel/cpp-baremetal-senders-and-receivers#73d95bc")
3030

3131
set(GEN_STR_CATALOG

include/cib/detail/runtime_conditional.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ operator and(runtime_condition<LhsName, LhsPs...> const &lhs,
8585
constexpr auto name =
8686
stdx::ct_format<"{} and {}">(CX_VALUE(LhsName), CX_VALUE(RhsName));
8787

88-
return runtime_condition<name, LhsPs..., RhsPs...>{};
88+
return runtime_condition<name.str.value, LhsPs..., RhsPs...>{};
8989
}
9090
}
9191

0 commit comments

Comments
 (0)