21 lines
571 B
C++
21 lines
571 B
C++
// Copyright (c) 2014-2021 Dr. Colin Hirsch and Daniel Frey
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef TAO_PEGTL_INTERNAL_PAD_HPP
|
|
#define TAO_PEGTL_INTERNAL_PAD_HPP
|
|
|
|
#include "../config.hpp"
|
|
|
|
#include "seq.hpp"
|
|
#include "star.hpp"
|
|
|
|
namespace TAO_PEGTL_NAMESPACE::internal
|
|
{
|
|
template< typename Rule, typename Pad1, typename Pad2 = Pad1 >
|
|
using pad = seq< star< Pad1 >, Rule, star< Pad2 > >;
|
|
|
|
} // namespace TAO_PEGTL_NAMESPACE::internal
|
|
|
|
#endif
|