Skip to content

Commit 483a8f1

Browse files
committed
Examples: Add missing <cstdint> include for std::intptr_t (#199)
1 parent cc9c197 commit 483a8f1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ v0.9.2 (WIP):
2323

2424
BUGFIX: Examples: Use ImGuiKey_KeypadEnter with ImGui r18604 (#183)
2525

26+
BUGFIX: Examples: Add missing <cstdint> include for std::intptr_t (#199)
27+
2628

2729
v0.9.1 (2022-08-27):
2830

examples/application/source/renderer_ogl3.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
# include "platform.h"
66
# include <algorithm>
7+
# include <cstdint> // std::intptr_t
78

89
# if PLATFORM(WINDOWS)
910
# define NOMINMAX

0 commit comments

Comments
 (0)