Hello,
I am sure I am missing something or may be I don't understand it properly but can somebody explain me why first line results into compilation error but second does not:
Code Snippet std::string tmp_Error = 5 ; // Results in C2440 error
std::string tmp_noError ;
tmp_noError = 5 ; // No compilation error
Thanks and Regards
Yogi Watcher