1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-12 02:00:58 +01:00

no message

This commit is contained in:
gzito 2015-10-14 23:13:02 +02:00
parent ebf4f1fa02
commit ba9c469ff0
4 changed files with 4 additions and 5 deletions

View File

@ -13,7 +13,6 @@ define _snprintf=snprintf
options
{
optimise-speed=1
cxx11
}
includepaths

View File

@ -14,7 +14,7 @@
#include <math.h> // sqrtf, fabsf, fmodf, powf, cosf, sinf, floorf, ceilf
#include <stdio.h> // vsnprintf, sscanf, printf
#if defined(_MSC_VER)
#ifdef _MSC_VER
#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen
#define snprintf _snprintf
#endif

View File

@ -26,7 +26,7 @@
#endif
#endif
#if defined(_MSC_VER)
#ifdef _MSC_VER
#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
#define snprintf _snprintf

View File

@ -14,7 +14,7 @@
#include <stdio.h> // FILE*
#include <math.h> // sqrtf()
#if defined(_MSC_VER)
#ifdef _MSC_VER
#pragma warning (push)
#pragma warning (disable: 4251) // class 'xxx' needs to have dll-interface to be used by clients of struct 'xxx' // when IMGUI_API is set to__declspec(dllexport)
#endif
@ -698,6 +698,6 @@ namespace ImGui
} // namespace ImGuiP
#if defined(_MSC_VER)
#ifdef _MSC_VER
#pragma warning (pop)
#endif