diff options
Diffstat (limited to 'MoonParser/pegtl/internal/pad.hpp')
-rw-r--r-- | MoonParser/pegtl/internal/pad.hpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/MoonParser/pegtl/internal/pad.hpp b/MoonParser/pegtl/internal/pad.hpp deleted file mode 100644 index fcb6e4f..0000000 --- a/MoonParser/pegtl/internal/pad.hpp +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | // Copyright (c) 2014-2017 Dr. Colin Hirsch and Daniel Frey | ||
2 | // Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ | ||
3 | |||
4 | #ifndef TAOCPP_PEGTL_INCLUDE_INTERNAL_PAD_HPP | ||
5 | #define TAOCPP_PEGTL_INCLUDE_INTERNAL_PAD_HPP | ||
6 | |||
7 | #include "../config.hpp" | ||
8 | |||
9 | #include "seq.hpp" | ||
10 | #include "star.hpp" | ||
11 | |||
12 | namespace tao | ||
13 | { | ||
14 | namespace TAOCPP_PEGTL_NAMESPACE | ||
15 | { | ||
16 | namespace internal | ||
17 | { | ||
18 | template< typename Rule, typename Pad1, typename Pad2 = Pad1 > | ||
19 | using pad = seq< star< Pad1 >, Rule, star< Pad2 > >; | ||
20 | |||
21 | } // namespace internal | ||
22 | |||
23 | } // namespace TAOCPP_PEGTL_NAMESPACE | ||
24 | |||
25 | } // namespace tao | ||
26 | |||
27 | #endif | ||