summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/cprintf.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/base/cprintf.cc b/base/cprintf.cc
index 945ad5b38..af3b26a57 100644
--- a/base/cprintf.cc
+++ b/base/cprintf.cc
@@ -238,22 +238,6 @@ ArgList::dump(const string &format)
}
break;
}
-
- ios::iostate state = stream->rdstate();
- if (state) {
-#if 0
- cout << "stream->rdstate() == " << state << endl;
- if (state & ios::badbit)
- cout << "stream is bad!\n";
- if (state & ios::eofbit)
- cout << "stream at eof!\n";
- if (state & ios::failbit)
- cout << "stream failed!\n";
- if (state & ios::goodbit)
- cout << "stream is good!!\n";
-#endif
- stream->clear();
- }
}
while (!objects.empty()) {