This commit is contained in:
Branimir Karadžić 2016-06-07 11:28:00 -07:00
parent 52c59645e2
commit b5a160d5f6
3 changed files with 3 additions and 1 deletions

View File

@ -620,6 +620,7 @@
#endif
#ifdef _MSC_VER
#pragma warning (disable: 4201) // nonstandard extension used: nameless struct/union
#pragma warning (disable: 4127) // condition expression is constant
#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff)
#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen

View File

@ -1,4 +1,5 @@
#include <stdint.h>
#include <inttypes.h>
namespace ImGui
{

View File

@ -80,7 +80,7 @@ namespace ImGui
}
else
{
Text("%10d", it->Size);
Text("%10" PRId64, it->Size);
}
if (clicked)