|
|
|
|
|
by josefx
1949 days ago
|
|
There often is a choice of using a safer solution over raw performance. In C++ for example you can fight C strings, or you can just use std::string, there is no need to always go with the dangerous solution when that piece of code isn't a bottleneck. |
|
It might not matter at all for what is being developed, but in no way are you going to spend those extra 5ms required for safer code.