Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed May 12, 2020
1 parent e6e1e54 commit b50ada0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/test/pegtl/contrib_state_control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ namespace TAO_PEGTL_NAMESPACE
{
std::vector< test_entry > trace;

template< typename Rule > static constexpr bool enable = E;
template< typename Rule >
static constexpr bool enable = E;

template< typename Rule, typename Input, typename... States >
void start( const Input& /*unused*/, const int a, std::size_t& b )
Expand Down Expand Up @@ -80,7 +81,8 @@ namespace TAO_PEGTL_NAMESPACE
}
};

struct test_grammar : must< sor< one< 'a' >, try_catch< seq< one< 'b' >, must< one< 'c' > > > >, two< 'b' > >, eof > {};
struct test_grammar : must< sor< one< 'a' >, try_catch< seq< one< 'b' >, must< one< 'c' > > > >, two< 'b' > >, eof >
{};

template< typename Rule >
struct test_action
Expand Down

0 comments on commit b50ada0

Please sign in to comment.