File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ include(cmake/string_catalog.cmake)
25
25
add_versioned_package ("gh:boostorg/mp11#boost-1.83.0" )
26
26
fmt_recipe (11.1.3 )
27
27
add_versioned_package ("gh:intel/cpp-baremetal-concurrency#0ddce52" )
28
- add_versioned_package ("gh:intel/cpp-std-extensions#7e1cbc7 " )
28
+ add_versioned_package ("gh:intel/cpp-std-extensions#effadd4 " )
29
29
add_versioned_package ("gh:intel/cpp-baremetal-senders-and-receivers#22c8006" )
30
30
31
31
set (GEN_STR_CATALOG
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ using priority_t = std::size_t;
11
11
12
12
inline namespace literals {
13
13
// NOLINTNEXTLINE(google-runtime-int)
14
- CONSTEVAL auto operator " " _irq(unsigned long long int v) -> irq_num_t {
14
+ CONSTEVAL_UDL auto operator " " _irq(unsigned long long int v) -> irq_num_t {
15
15
return static_cast <irq_num_t >(v);
16
16
}
17
17
} // namespace literals
Original file line number Diff line number Diff line change @@ -279,21 +279,21 @@ enum struct lsb_t : std::uint32_t {};
279
279
280
280
inline namespace literals {
281
281
// NOLINTNEXTLINE(google-runtime-int)
282
- CONSTEVAL auto operator " " _bi(unsigned long long int v) -> byte_index_t {
282
+ CONSTEVAL_UDL auto operator " " _bi(unsigned long long int v) -> byte_index_t {
283
283
return static_cast <byte_index_t >(v);
284
284
}
285
- CONSTEVAL auto operator " " _dwi(unsigned long long int v) -> dword_index_t {
285
+ CONSTEVAL_UDL auto operator " " _dwi(unsigned long long int v) -> dword_index_t {
286
286
return static_cast <dword_index_t >(v);
287
287
}
288
- CONSTEVAL auto operator " " _dw(unsigned long long int v) -> dword_index_t {
288
+ CONSTEVAL_UDL auto operator " " _dw(unsigned long long int v) -> dword_index_t {
289
289
return static_cast <dword_index_t >(v);
290
290
}
291
291
// NOLINTNEXTLINE(google-runtime-int)
292
- CONSTEVAL auto operator " " _lsb(unsigned long long int v) -> lsb_t {
292
+ CONSTEVAL_UDL auto operator " " _lsb(unsigned long long int v) -> lsb_t {
293
293
return static_cast <lsb_t >(v);
294
294
}
295
295
// NOLINTNEXTLINE(google-runtime-int)
296
- CONSTEVAL auto operator " " _msb(unsigned long long int v) -> msb_t {
296
+ CONSTEVAL_UDL auto operator " " _msb(unsigned long long int v) -> msb_t {
297
297
return static_cast <msb_t >(v);
298
298
}
299
299
} // namespace literals
You can’t perform that action at this time.
0 commit comments