Has C++11 move semantics made the use of std::ifstream and std::ofstream easier or safer with regards to exceptions? I guess it depends on the standard library aswell. Any differences there between GCC, ICC and VC++ Compiler?

link|improve this question

73% accept rate
7  
In what way are they not exception safe? – Nicol Bolas Oct 1 '11 at 21:53
2  
And how would move semantics affect exception safety in any case? – ildjarn Oct 1 '11 at 21:56
5  
What's your actual problem? – Kerrek SB Oct 1 '11 at 21:59
feedback

1 Answer

up vote 5 down vote accepted

No. The exception safety aspects of the std::stream classes has not been impacted. The only difference is that you can now return streams from factory functions and store them in containers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.