mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
18 lines
481 B
C++
18 lines
481 B
C++
|
#ifndef SPROUT_CONTAINER_FIXED_SIZE_HPP
|
||
|
#define SPROUT_CONTAINER_FIXED_SIZE_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/container/container_traits.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
//
|
||
|
// fixed_size
|
||
|
//
|
||
|
template<typename Container>
|
||
|
SPROUT_CONSTEXPR inline typename sprout::container_traits<Container>::size_type fixed_size() {
|
||
|
return sprout::container_traits<Container>::fixed_size();
|
||
|
}
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_CONTAINER_FIXED_SIZE_HPP
|