From 95f66f84efb4abc52b110008154a8909853fbf34 Mon Sep 17 00:00:00 2001 From: Tommy Date: Mon, 19 Feb 2018 14:33:33 +0100 Subject: [PATCH] Remove constexpr for MSVC. --- code/FBXExporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/FBXExporter.cpp b/code/FBXExporter.cpp index d13c97f6b..9cdb34f40 100644 --- a/code/FBXExporter.cpp +++ b/code/FBXExporter.cpp @@ -70,7 +70,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // https://code.blender.org/2013/08/fbx-binary-file-format-specification/ // https://wiki.blender.org/index.php/User:Mont29/Foundation/FBX_File_Structure -constexpr double DEG = 360.0 / 6.283185307179586476925286766559; +const double DEG = 57.29577951308232087679815481; // degrees per radian // some constants that we'll use for writing metadata namespace FBX {