Files
tinyobjloader/tiny_obj_loader.cc
Sean Jones 7afab4ad56 Cppcheck suggested performance improvement
variables should be passed by reference.
They are passed by value. It could be passed as a (const) reference which is usually faster and recommended in C++.

This gives a 9% performance boost in my project.
26.28s to load instead of 28.94s
2013-11-25 20:54:46 +00:00

16 KiB