Sha256: 3418f3386b43280f122bcd265e53f7f0c85cfcd02b8ef1bf969dc6b90f3b6285
Contents?: true
Size: 1.42 KB
Versions: 24
Compression:
Stored size: 1.42 KB
Contents
// Copyright (c) 2014-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ #ifndef TAO_JSON_PEGTL_INTERNAL_RAISE_HPP #define TAO_JSON_PEGTL_INTERNAL_RAISE_HPP #include <cstdlib> #include <stdexcept> #include <type_traits> #include "../config.hpp" #include "skip_control.hpp" #include "../analysis/generic.hpp" #include "../apply_mode.hpp" #include "../rewind_mode.hpp" namespace TAO_JSON_PEGTL_NAMESPACE::internal { template< typename T > struct raise { using analyze_t = analysis::generic< analysis::rule_type::any >; #if defined( _MSC_VER ) #pragma warning( push ) #pragma warning( disable : 4702 ) #endif template< apply_mode, rewind_mode, template< typename... > class Action, template< typename... > class Control, typename Input, typename... States > [[nodiscard]] static bool match( Input& in, States&&... st ) { Control< T >::raise( static_cast< const Input& >( in ), st... ); throw std::logic_error( "code should be unreachable: Control< T >::raise() did not throw an exception" ); // LCOV_EXCL_LINE #if defined( _MSC_VER ) #pragma warning( pop ) #endif } }; template< typename T > inline constexpr bool skip_control< raise< T > > = true; } // namespace TAO_JSON_PEGTL_NAMESPACE::internal #endif
Version data entries
24 entries across 24 versions & 1 rubygems