about summary refs log tree commit diff stats
path: root/cpp/boot.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-02-18 14:48:19 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-02-18 14:48:19 -0800
commit01b2852b653a81c4d5e197a0c52659c7e0dcaf5f (patch)
tree9c9864846c27191afd73b4c1a44810ac0fdd1091 /cpp/boot.cc
parent9fc64bbc95bb4e55f28f5262d0f5c660177f0a19 (diff)
downloadmu-01b2852b653a81c4d5e197a0c52659c7e0dcaf5f.tar.gz
782 - promote literate version to canonical C++ version
Diffstat (limited to 'cpp/boot.cc')
-rw-r--r--cpp/boot.cc66
1 files changed, 0 insertions, 66 deletions
diff --git a/cpp/boot.cc b/cpp/boot.cc
deleted file mode 100644
index 64a0c58e..00000000
--- a/cpp/boot.cc
+++ /dev/null
@@ -1,66 +0,0 @@
-// C++ style:
-//  no pointers except cell*
-//  use long as the default integer type; it's always large enough to hold pointers
-
-#define unused __attribute__((unused))
-
-#include<cstdio>
-#include<cstring>
-#include<cstdlib>
-#include<errno.h>
-#include<time.h>
-#include<math.h>
-#include<vector>
-using std::vector;
-#include<list>
-using std::list;
-#include<stack>
-using std::stack;
-#include<utility>
-using std::pair;
-
-#include<tr1/unordered_map>
-using std::tr1::unordered_map;
-#include<tr1/unordered_set>
-using std::tr1::unordered_set;
-#include<algorithm>
-
-#include<string>
-using std::string;
-const size_t NOT_FOUND = string::npos;
-
-#include<iostream>
-using std::istream;
-using std::ostream;
-using std::iostream;
-using std::cin;
-using std::cout;
-using std::cerr;
-
-#include<sstream>
-using std::stringstream;
-using std::istringstream;
-using std::ostringstream;
-
-#include<fstream>
-using std::ifstream;
-using std::ofstream;
-
-
-
-// interpreter decls
-namespace mu {
-
-#include "type_list"
-
-#include "function_list"
-
-// interpreter impl
-
-#include "file_list"
-
-// interpreter tests
-
-#include "test_file_list"
-
-}  // namespace mu
revious revision' href='/acidbong/suckless/dwm/blame/.hgtags?id=57c49fe867b4c31a518bd12f32fda060cbb9d088'>^
6ff346b ^
d504005 ^
b39d0c5 ^
c34df2c ^
6cca399 ^
720b2ab ^
8e6eb52 ^
0c5f47e ^
82ddba8 ^
a2175cf ^
e06447e ^
760e23d ^
9996439 ^
3764ab4 ^
58e6866 ^
beac539 ^
a768ea9 ^
177ed7e ^
936e11f ^
b65a1e3 ^
ea4827a ^
82fed98 ^
5732e47 ^
f577fe4 ^
0d095ae ^
ab83872 ^
dc66237 ^
0d9d3e7 ^
5c48012 ^
7d071ce ^
7c9fa25 ^
81aebf8 ^
4e49d5a ^
f2190c8 ^
cc79700 ^
f651435 ^
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