Skip to content

Commit 6193909

Browse files
Missing includes for VS2019: (#63)
* Math.h requires cstdint for uint8_t etc * Color.cpp requires limits for std::numeric_limits Co-authored-by: Владимир Орлов <[email protected]>
1 parent 20b0a2b commit 6193909

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

GLTFSDK/Inc/GLTFSDK/Math.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#include <array>
77
#include <cmath>
8+
#include <cstdint>
89

910
namespace Microsoft
1011
{

GLTFSDK/Source/Color.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <GLTFSDK/Color.h>
55

66
#include <GLTFSDK/Math.h>
7+
#include <limits>
78

89
using namespace Microsoft::glTF;
910

0 commit comments

Comments
 (0)