Skip to content

Commit

Permalink
Fixed compiler warning on Visual Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
jratcliff committed Sep 16, 2019
1 parent 25932fd commit b07958e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/VHACD_Lib/src/FloatMath.inl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
// a quaternion is a 'float *' to 4 floats representing a quaternion x,y,z,w
//

#ifdef _MSC_VER
#pragma warning(disable:4996)
#endif

namespace FLOAT_MATH
{

Expand Down

0 comments on commit b07958e

Please sign in to comment.