Skip to content

Commit 8c97ac3

Browse files
author
KRAB
committed
fix: no support for user-defined literals
1 parent a66d044 commit 8c97ac3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

include/boost/sml.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
#define __BOOST_SML_DEFINED_HAS_BUILTIN
7878
#define __has_builtin(...) 0
7979
#endif
80+
/* Needs IAR language extensions */
8081
#define __BOOST_SML_UNUSED __attribute__((unused))
8182
#define __BOOST_SML_VT_INIT \
8283
{}
@@ -2842,6 +2843,7 @@ constexpr typename front::state_sm<T>::type state{};
28422843
template <class T>
28432844
typename front::state_sm<T>::type state __BOOST_SML_VT_INIT;
28442845
#endif
2846+
#if !(defined(__ICCARM__))
28452847
inline namespace literals {
28462848
#if defined(__cpp_nontype_template_parameter_class) || \
28472849
defined(__cpp_nontype_template_args) && __cpp_nontype_template_args >= 201911L
@@ -2866,6 +2868,7 @@ constexpr auto operator""_e() {
28662868
}
28672869
#endif
28682870
} // namespace literals
2871+
#endif
28692872
__BOOST_SML_UNUSED static front::state<back::terminate_state> X;
28702873
__BOOST_SML_UNUSED static front::history_state H;
28712874
__BOOST_SML_UNUSED static front::actions::defer defer;

0 commit comments

Comments
 (0)