aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/pegtl/internal/if_must.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/pegtl/internal/if_must.hpp')
-rw-r--r--MoonParser/pegtl/internal/if_must.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/MoonParser/pegtl/internal/if_must.hpp b/MoonParser/pegtl/internal/if_must.hpp
deleted file mode 100644
index 2a56d7e..0000000
--- a/MoonParser/pegtl/internal/if_must.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_IF_MUST_HPP
5#define TAOCPP_PEGTL_INCLUDE_INTERNAL_IF_MUST_HPP
6
7#include "../config.hpp"
8
9#include "must.hpp"
10#include "seq.hpp"
11
12namespace tao
13{
14 namespace TAOCPP_PEGTL_NAMESPACE
15 {
16 namespace internal
17 {
18 template< typename Cond, typename... Thens >
19 using if_must = seq< Cond, must< Thens... > >;
20
21 } // namespace internal
22
23 } // namespace TAOCPP_PEGTL_NAMESPACE
24
25} // namespace tao
26
27#endif