hello group,
are there differences (run-time, ...) between the following two versions?
....
catch (std::ios_base: :failure exception)
....
....
catch (const std::ios_base:: failure& exception) // attend reference
....
if not, what version do you prefer? thanks a lot!
cheers, chris
are there differences (run-time, ...) between the following two versions?
....
catch (std::ios_base: :failure exception)
....
....
catch (const std::ios_base:: failure& exception) // attend reference
....
if not, what version do you prefer? thanks a lot!
cheers, chris
Comment