fstl-app / fstl

A fast STL file viewer
463 stars 106 forks source link

Fix Mesh move constructor by explicit calling std::move for the vectors #22

Closed Akranen closed 6 years ago

Akranen commented 6 years ago

The move constructor of the Mesh class was copying both vectors because std::move wasn't being called inside the constructor.

mkeeter commented 6 years ago

Thanks!