aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/pegtl/internal/rep_min.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/pegtl/internal/rep_min.hpp')
-rw-r--r--MoonParser/pegtl/internal/rep_min.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/MoonParser/pegtl/internal/rep_min.hpp b/MoonParser/pegtl/internal/rep_min.hpp
deleted file mode 100644
index f5e61da..0000000
--- a/MoonParser/pegtl/internal/rep_min.hpp
+++ /dev/null
@@ -1,28 +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_REP_MIN_HPP
5#define TAOCPP_PEGTL_INCLUDE_INTERNAL_REP_MIN_HPP
6
7#include "../config.hpp"
8
9#include "rep.hpp"
10#include "seq.hpp"
11#include "star.hpp"
12
13namespace tao
14{
15 namespace TAOCPP_PEGTL_NAMESPACE
16 {
17 namespace internal
18 {
19 template< unsigned Min, typename Rule, typename... Rules >
20 using rep_min = seq< rep< Min, Rule, Rules... >, star< Rule, Rules... > >;
21
22 } // namespace internal
23
24 } // namespace TAOCPP_PEGTL_NAMESPACE
25
26} // namespace tao
27
28#endif