Open Quuxplusone opened 9 years ago
Will be good idea to have readability check with will replace assignment with constructor call in initialization.
For example:
std::string String = std::string( "value" );
Sometimes default constuctor could be used in situations like:
std::string String = "";
Implemented for strings in r261939.
Will be good idea to have readability check with will replace assignment with constructor call in initialization.
For example:
std::string String = std::string( "value" );