From 483a8f1544ccd3102caaf755962aea09aa5cda97 Mon Sep 17 00:00:00 2001 From: thedmd Date: Tue, 2 May 2023 01:30:52 +0200 Subject: [PATCH] Examples: Add missing include for std::intptr_t (#199) --- docs/CHANGELOG.txt | 2 ++ examples/application/source/renderer_ogl3.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index 50430c277..e3bb5c434 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -23,6 +23,8 @@ v0.9.2 (WIP): BUGFIX: Examples: Use ImGuiKey_KeypadEnter with ImGui r18604 (#183) + BUGFIX: Examples: Add missing include for std::intptr_t (#199) + v0.9.1 (2022-08-27): diff --git a/examples/application/source/renderer_ogl3.cpp b/examples/application/source/renderer_ogl3.cpp index 72a7dfc32..69f825be5 100644 --- a/examples/application/source/renderer_ogl3.cpp +++ b/examples/application/source/renderer_ogl3.cpp @@ -4,6 +4,7 @@ # include "platform.h" # include +# include // std::intptr_t # if PLATFORM(WINDOWS) # define NOMINMAX