microsoft / DirectXMesh

DirectXMesh geometry processing library
https://walbourn.github.io/directxmesh/
MIT License
786 stars 152 forks source link

Code review for standard library header usage #53

Closed walbourn closed 3 years ago

walbourn commented 3 years ago

Reviewed all the C++ standard library header usage and normalized usage for improved conformance.

The non-standard malloc.h is still being included for _aligned_malloc / _aligned_free. To be conformant, I should update it to use aligned_alloc and free when building for C++17 which is in cstdlib.

Also trimmed trailing whitespace in these files.