build on irix

This commit is contained in:
David Rose 2003-09-29 23:56:42 +00:00
parent 951f96b911
commit 87636fa232

View File

@ -61,12 +61,12 @@ input_hex(istream &in) {
} }
if (i != 32) { if (i != 32) {
in.setstate(ios::failbit); in.clear(ios::failbit|in.rdstate());
return; return;
} }
if (!in.eof()) { if (!in.eof()) {
in.unget(); in.putback(ch);
} else { } else {
in.clear(); in.clear();
} }