mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
all type_traits support C++14 requirements
This commit is contained in:
parent
bf0c7021cf
commit
403e83eaf0
95 changed files with 319 additions and 268 deletions
|
@ -10,6 +10,7 @@
|
|||
|
||||
#include <cstddef>
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/type_traits/integral_constant.hpp>
|
||||
#include <sprout/type_traits/identity.hpp>
|
||||
#include <sprout/weed/parser_result.hpp>
|
||||
#include <sprout/weed/limited.hpp>
|
||||
|
@ -91,7 +92,7 @@ namespace sprout {
|
|||
//
|
||||
template<typename Parser, std::size_t Limit, typename Iterator, typename Context>
|
||||
struct limit_of<sprout::weed::limit_p<Parser, Limit>, Iterator, Context>
|
||||
: public std::integral_constant<std::size_t, Limit>
|
||||
: public sprout::integral_constant<std::size_t, Limit>
|
||||
{};
|
||||
} // namespace traits
|
||||
} // namespace weed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue