aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/pegtl/analysis/counted.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/pegtl/analysis/counted.hpp')
-rw-r--r--MoonParser/pegtl/analysis/counted.hpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/MoonParser/pegtl/analysis/counted.hpp b/MoonParser/pegtl/analysis/counted.hpp
deleted file mode 100644
index 84a12ae..0000000
--- a/MoonParser/pegtl/analysis/counted.hpp
+++ /dev/null
@@ -1,29 +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_ANALYSIS_COUNTED_HPP
5#define TAOCPP_PEGTL_INCLUDE_ANALYSIS_COUNTED_HPP
6
7#include "../config.hpp"
8
9#include "generic.hpp"
10
11namespace tao
12{
13 namespace TAOCPP_PEGTL_NAMESPACE
14 {
15 namespace analysis
16 {
17 template< rule_type Type, unsigned Count, typename... Rules >
18 struct counted
19 : generic< ( Count != 0 ) ? Type : rule_type::OPT, Rules... >
20 {
21 };
22
23 } // namespace analysis
24
25 } // namespace TAOCPP_PEGTL_NAMESPACE
26
27} // namespace tao
28
29#endif