Removed _MSC_VER <= 1500 checks for Visual Studio 2008 or earlier.

Our codebase requires VS2012+ since a while.
This commit is contained in:
ocornut
2023-07-13 12:20:14 +02:00
parent 863ac31f01
commit 0e8eb8c48e
8 changed files with 0 additions and 32 deletions

View File

@ -107,11 +107,7 @@
#ifndef IMGUI_DISABLE
#include "imgui_impl_opengl3.h"
#include <stdio.h>
#if defined(_MSC_VER) && _MSC_VER <= 1500 // MSVC 2008 or earlier
#include <stddef.h> // intptr_t
#else
#include <stdint.h> // intptr_t
#endif
#if defined(__APPLE__)
#include <TargetConditionals.h>
#endif