diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-02-22 16:30:49 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-02-22 16:30:49 -0800 |
commit | f17b34a8babcd5dc52482d2bddb08b65f62910e7 (patch) | |
tree | 2e2bce690e5c6a40c84e01b06f3b08e25d574855 | |
parent | 6b3fc927c2fbad4bd555bc6952ae960e7d191d62 (diff) | |
download | mu-f17b34a8babcd5dc52482d2bddb08b65f62910e7.tar.gz |
2688
-rw-r--r-- | 001help.cc | 1 | ||||
-rw-r--r-- | 003trace.cc | 8 | ||||
-rw-r--r-- | 010vm.cc | 4 |
3 files changed, 1 insertions, 12 deletions
diff --git a/001help.cc b/001help.cc index b2ca4c46..26f17893 100644 --- a/001help.cc +++ b/001help.cc @@ -134,6 +134,7 @@ using std::iostream; using std::cin; using std::cout; using std::cerr; +#include<iomanip> #include<cstring> #include<string> diff --git a/003trace.cc b/003trace.cc index 4b254919..df57c374 100644 --- a/003trace.cc +++ b/003trace.cc @@ -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; diff --git a/010vm.cc b/010vm.cc index 1bd45033..94570b3a 100644 --- a/010vm.cc +++ b/010vm.cc @@ -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 { |