aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/pegtl/nothing.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/pegtl/nothing.hpp')
-rw-r--r--MoonParser/pegtl/nothing.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/MoonParser/pegtl/nothing.hpp b/MoonParser/pegtl/nothing.hpp
deleted file mode 100644
index 9b121a2..0000000
--- a/MoonParser/pegtl/nothing.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_NOTHING_HPP
5#define TAOCPP_PEGTL_INCLUDE_NOTHING_HPP
6
7#include <type_traits>
8
9#include "config.hpp"
10
11namespace tao
12{
13 namespace TAOCPP_PEGTL_NAMESPACE
14 {
15 template< typename Rule >
16 struct nothing
17 {
18 };
19
20 template< template< typename... > class Action, typename Rule >
21 using is_nothing = std::is_base_of< nothing< Rule >, Action< Rule > >;
22
23 } // namespace TAOCPP_PEGTL_NAMESPACE
24
25} // namespace tao
26
27#endif