|
1234567891011121314151617181920212223242526272829303132 |
-
-
-
-
-
-
-
-
-
-
-
-
- #ifndef RANGES_V3_UTILITY_STATIC_CONST_HPP
- #define RANGES_V3_UTILITY_STATIC_CONST_HPP
-
- namespace ranges
- {
-
-
- template<typename T>
- struct static_const
- {
- static constexpr T value{};
- };
-
-
-
- template<typename T>
- constexpr T static_const<T>::value;
- }
-
- #endif
|