summaryrefslogtreecommitdiff
path: root/boost/metaparse/v1/impl/remove_trailing_no_chars.hpp
blob: 7d561d2709cae74ef81fc57d5abe6243c407a4e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef BOOST_METAPARSE_V1_IMPL_REMOVE_TRAILING_NO_CHARS_HPP
#define BOOST_METAPARSE_V1_IMPL_REMOVE_TRAILING_NO_CHARS_HPP

// Copyright Abel Sinkovics (abel@sinkovics.hu)  2013.
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)

#include <boost/metaparse/config.hpp>
#include <boost/metaparse/v1/string.hpp>
#include <boost/metaparse/v1/impl/push_front_c.hpp>

namespace boost
{
  namespace metaparse
  {
    namespace v1
    {
      namespace impl
      {
        template <class S>
        struct remove_trailing_no_chars : S {};

#ifdef BOOST_METAPARSE_VARIADIC_STRING
        // this code assumes that BOOST_NO_CHARs are at the end of the string
        template <char... Cs>
        struct remove_trailing_no_chars<string<BOOST_NO_CHAR, Cs...>> :
          string<>
        {};

        template <char C, char... Cs>
        struct remove_trailing_no_chars<string<C, Cs...>> :
          push_front_c<typename remove_trailing_no_chars<string<Cs...>>::type,C>
        {};

#ifdef _MSC_VER
        /*
         * These specialisations are needed to avoid an internal compiler error
         * in Visual C++ 12
         */
        template <char C>
        struct remove_trailing_no_chars<string<C>> : string<C> {};

        template <>
        struct remove_trailing_no_chars<string<BOOST_NO_CHAR>> : string<> {};

        template <>
        struct remove_trailing_no_chars<string<>> : string<> {};
#endif
#endif
      }
    }
  }
}

#endif