mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Missing includes for imgui_draw.cpp (#219)
This commit is contained in:
parent
52a74701f5
commit
e32f0931e8
2 changed files with 11 additions and 11 deletions
|
|
@ -19,6 +19,11 @@
|
|||
#include "imgui_internal.h"
|
||||
#include <stdio.h> // vsnprintf, sscanf, printf
|
||||
#include <new> // new (ptr)
|
||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||||
#include <malloc.h> // alloca
|
||||
#else
|
||||
#include <alloca.h> // alloca
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue