12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_HISTOGRAM_DETAIL_PRIORITY_HPP
- #define BOOST_HISTOGRAM_DETAIL_PRIORITY_HPP
- #include <cstdint>
- namespace boost {
- namespace histogram {
- namespace detail {
- template <std::size_t N>
- struct priority : priority<(N - 1)> {};
- template <>
- struct priority<0> {};
- }
- }
- }
- #endif
|