aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/pegtl/analyze.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/pegtl/analyze.hpp')
-rw-r--r--MoonParser/pegtl/analyze.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/MoonParser/pegtl/analyze.hpp b/MoonParser/pegtl/analyze.hpp
deleted file mode 100644
index 5468a14..0000000
--- a/MoonParser/pegtl/analyze.hpp
+++ /dev/null
@@ -1,25 +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_ANALYZE_HPP
5#define TAOCPP_PEGTL_INCLUDE_ANALYZE_HPP
6
7#include "config.hpp"
8
9#include "analysis/analyze_cycles.hpp"
10
11namespace tao
12{
13 namespace TAOCPP_PEGTL_NAMESPACE
14 {
15 template< typename Rule >
16 std::size_t analyze( const bool verbose = true )
17 {
18 return analysis::analyze_cycles< Rule >( verbose ).problems();
19 }
20
21 } // namespace TAOCPP_PEGTL_NAMESPACE
22
23} // namespace tao
24
25#endif