std::string s(""); s = ""; calls the copy constructor, which in turn calls strlen(), … assigning a default-constructed string generates fewer instructions and is therefore preferred. With C++11 uniform initialization, you’d simply write s = { } instead. |
||
---|---|---|
.. | ||
glTF2Asset.h | ||
glTF2Asset.inl | ||
glTF2AssetWriter.h | ||
glTF2AssetWriter.inl | ||
glTF2Exporter.cpp | ||
glTF2Exporter.h | ||
glTF2Importer.cpp | ||
glTF2Importer.h |