[Bug libstdc++/53984] New: iostream operation throwing exception when exceptions not enabled

2012-07-16 Thread gccbz.10.petechap at spamgourmet dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 Bug #: 53984 Summary: iostream operation throwing exception when exceptions not enabled Classification: Unclassified Product: gcc Version: 4.6.3 Status: UNCONFIRMED

[Bug libstdc++/53984] iostream operation throwing exception when exceptions not enabled

2012-07-16 Thread gccbz.10.petechap at spamgourmet dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53984 --- Comment #1 from Pete Chapman 2012-07-16 17:00:10 UTC --- Even simpler: --- #include int main() { std::ifstream in("."); int x; if (in) in >> x; } ---