/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_WEED_TRAITS_PARSER_LIMIT_OF_HPP #define SPROUT_WEED_TRAITS_PARSER_LIMIT_OF_HPP #include #include #include #include #include namespace sprout { namespace weed { namespace traits { // // limit_of // template struct limit_of : public std::integral_constant(-1)> {}; template struct limit_of : public sprout::weed::traits::limit_of {}; template struct limit_of, Iterator, Context> : public sprout::weed::traits::limit_of {}; } // namespace traits } // namespace weed } // namespace sprout #endif // #ifndef SPROUT_WEED_TRAITS_PARSER_LIMIT_OF_HPP