about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--010vm.cc4
-rw-r--r--013literal_string.cc6
2 files changed, 5 insertions, 5 deletions
diff --git a/010vm.cc b/010vm.cc
index 5b4b9a16..da5725fe 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -348,7 +348,7 @@ string reagent::to_string() const {
   return out.str();
 }
 
-void dump_property(const string_tree* property, ostringstream& out) {
+void dump_property(const string_tree* property, ostream& out) {
   if (!property) {
     out << "<>";
     return;
@@ -376,7 +376,7 @@ string dump_types(const reagent& x) {
   return out.str();
 }
 
-void dump_types(type_tree* type, ostringstream& out) {
+void dump_types(type_tree* type, ostream& out) {
   if (!type->left && !type->right) {
     out << Type[type->value].name;
     return;
diff --git a/013literal_string.cc b/013literal_string.cc
index 0e663d17..3bbd4940 100644
--- a/013literal_string.cc
+++ b/013literal_string.cc
@@ -42,7 +42,7 @@ string slurp_quoted(istream& in) {
 
 // A string is a code string if it contains a newline before any non-whitespace
 // todo: support comments before the newline. But that gets messy.
-bool is_code_string(istream& in, ostringstream& out) {
+bool is_code_string(istream& in, ostream& out) {
   while (!in.eof()) {
     char c = in.get();
     if (!isspace(c)) {
@@ -59,7 +59,7 @@ bool is_code_string(istream& in, ostringstream& out) {
 
 // Read a regular string. Regular strings can only contain other regular
 // strings.
-void slurp_quoted_comment_oblivious(istream& in, ostringstream& out) {
+void slurp_quoted_comment_oblivious(istream& in, ostream& out) {
   int brace_depth = 1;
   while (!in.eof()) {
     char c = in.get();
@@ -79,7 +79,7 @@ void slurp_quoted_comment_oblivious(istream& in, ostringstream& out) {
 }
 
 // Read a code string. Code strings can contain either code or regular strings.
-void slurp_quoted_comment_aware(istream& in, ostringstream& out) {
+void slurp_quoted_comment_aware(istream& in, ostream& out) {
   char c;
   while (in >> c) {
     if (c == '\\') {