11 #ifndef SRC_INCLUDE_SMASH_CXX17COMPAT_H_
12 #define SRC_INCLUDE_SMASH_CXX17COMPAT_H_
15 #include <type_traits>
21 #if defined(GCC_COMPILER) && (__GNUC__ == 8 && __GNUC_MINOR__ < 4)
35 std::optional<T> make_optional(T&& value) {
36 return std::optional<std::decay_t<T>>(std::forward<T>(value));
39 using std::make_optional;
42 #if __cplusplus < 202002L
51 using type = std::remove_cv_t<std::remove_reference_t<T>>;
59 using std::remove_cvref;
typename remove_cvref< T >::type remove_cvref_t
Helper alias which is always defined next to a type trait.
Definition for remove_cvref type trait, which is in C++20's standard library.
std::remove_cv_t< std::remove_reference_t< T > > type
The type with striped properties.