about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--001help.cc1
-rw-r--r--003trace.cc8
-rw-r--r--010vm.cc4
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 {