18 lines
419 B
C++
18 lines
419 B
C++
|
// Copyright (c) 2019-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_REQUIRE_APPLY_HPP
|
||
|
#define TAO_PEGTL_REQUIRE_APPLY_HPP
|
||
|
|
||
|
#include "config.hpp"
|
||
|
|
||
|
namespace TAO_PEGTL_NAMESPACE
|
||
|
{
|
||
|
struct require_apply
|
||
|
{};
|
||
|
|
||
|
} // namespace TAO_PEGTL_NAMESPACE
|
||
|
|
||
|
#endif
|