mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-24 05:19:02 +08:00
Provide a non-empty definition for IMGUI_DEBUG_PRINTF when disabled. (#5978)
Fixes MSVC warning C4390 when /W3 is specified. Reworked from original PR: (void)0 provides better codegen by do-while. Similar to #5901
This commit is contained in:
parent
da832532c0
commit
328695bd47
@ -205,7 +205,7 @@ namespace ImStb
|
|||||||
#ifndef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
|
#ifndef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS
|
||||||
#define IMGUI_DEBUG_PRINTF(_FMT,...) printf(_FMT, __VA_ARGS__)
|
#define IMGUI_DEBUG_PRINTF(_FMT,...) printf(_FMT, __VA_ARGS__)
|
||||||
#else
|
#else
|
||||||
#define IMGUI_DEBUG_PRINTF(_FMT,...)
|
#define IMGUI_DEBUG_PRINTF(_FMT,...) ((void)0)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user