Sha256: 7be8c78d7afe59e3b6355c5d532727c3b166e4626b2192c432cf9565107be3f7
Contents?: true
Size: 775 Bytes
Versions: 10
Compression:
Stored size: 775 Bytes
Contents
// Copyright (c) 2015-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ #ifndef TAO_JSON_PEGTL_INTERNAL_BUMP_HELP_HPP #define TAO_JSON_PEGTL_INTERNAL_BUMP_HELP_HPP #include <cstddef> #include <type_traits> #include "../config.hpp" #include "result_on_found.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { template< result_on_found R, typename ParseInput, typename Char, Char... Cs > void bump_help( ParseInput& in, const std::size_t count ) noexcept { if constexpr( ( ( Cs != ParseInput::eol_t::ch ) && ... ) != bool( R ) ) { in.bump( count ); } else { in.bump_in_this_line( count ); } } } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
10 entries across 10 versions & 1 rubygems