aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/pegtl/contrib/alphabet.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/pegtl/contrib/alphabet.hpp')
-rw-r--r--MoonParser/pegtl/contrib/alphabet.hpp75
1 files changed, 0 insertions, 75 deletions
diff --git a/MoonParser/pegtl/contrib/alphabet.hpp b/MoonParser/pegtl/contrib/alphabet.hpp
deleted file mode 100644
index c0dce42..0000000
--- a/MoonParser/pegtl/contrib/alphabet.hpp
+++ /dev/null
@@ -1,75 +0,0 @@
1// Copyright (c) 2015-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_CONTRIB_ALPHABET_HPP
5#define TAOCPP_PEGTL_INCLUDE_CONTRIB_ALPHABET_HPP
6
7#include "../config.hpp"
8
9namespace tao
10{
11 namespace TAOCPP_PEGTL_NAMESPACE
12 {
13 inline namespace alphabet
14 {
15 static const int a = 'a';
16 static const int b = 'b';
17 static const int c = 'c';
18 static const int d = 'd';
19 static const int e = 'e';
20 static const int f = 'f';
21 static const int g = 'g';
22 static const int h = 'h';
23 static const int i = 'i';
24 static const int j = 'j';
25 static const int k = 'k';
26 static const int l = 'l';
27 static const int m = 'm';
28 static const int n = 'n';
29 static const int o = 'o';
30 static const int p = 'p';
31 static const int q = 'q';
32 static const int r = 'r';
33 static const int s = 's';
34 static const int t = 't';
35 static const int u = 'u';
36 static const int v = 'v';
37 static const int w = 'w';
38 static const int x = 'x';
39 static const int y = 'y';
40 static const int z = 'z';
41
42 static const int A = 'A';
43 static const int B = 'B';
44 static const int C = 'C';
45 static const int D = 'D';
46 static const int E = 'E';
47 static const int F = 'F';
48 static const int G = 'G';
49 static const int H = 'H';
50 static const int I = 'I';
51 static const int J = 'J';
52 static const int K = 'K';
53 static const int L = 'L';
54 static const int M = 'M';
55 static const int N = 'N';
56 static const int O = 'O';
57 static const int P = 'P';
58 static const int Q = 'Q';
59 static const int R = 'R';
60 static const int S = 'S';
61 static const int T = 'T';
62 static const int U = 'U';
63 static const int V = 'V';
64 static const int W = 'W';
65 static const int X = 'X';
66 static const int Y = 'Y';
67 static const int Z = 'Z';
68
69 } // namespace alphabet
70
71 } // namespace TAOCPP_PEGTL_NAMESPACE
72
73} // namespace tao
74
75#endif