This commit is contained in:
Kartik K. Agaram 2016-02-22 16:30:49 -08:00
parent 6b3fc927c2
commit f17b34a8ba
3 changed files with 1 additions and 12 deletions

View File

@ -134,6 +134,7 @@ using std::iostream;
using std::cin;
using std::cout;
using std::cerr;
#include<iomanip>
#include<cstring>
#include<string>

View File

@ -343,14 +343,6 @@ using std::map;
using std::set;
#include<algorithm>
#include<iostream>
using std::istream;
using std::ostream;
using std::cin;
using std::cout;
using std::cerr;
#include<iomanip>
#include<sstream>
using std::istringstream;
using std::ostringstream;

View File

@ -66,10 +66,6 @@ struct reagent {
};
:(before "struct reagent")
struct property {
vector<string> values;
};
// Types can range from a simple type ordinal, to arbitrarily complex trees of
// type parameters, like (map (address array character) (list number))
struct type_tree {