mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-24 02:14:22 +00:00
Tables: Expose TableSetColumnEnabled() in public api. (#3935)
This commit is contained in:
parent
6f360d6040
commit
aa5431fde2
5 changed files with 6 additions and 2 deletions
|
|
@ -7091,7 +7091,7 @@ static void ImGui::ErrorCheckNewFrameSanityChecks()
|
|||
ImGuiContext& g = *GImGui;
|
||||
|
||||
// Check user IM_ASSERT macro
|
||||
// (IF YOU GET A WARNING OR COMPILE ERROR HERE: it means you assert macro is incorrectly defined!
|
||||
// (IF YOU GET A WARNING OR COMPILE ERROR HERE: it means your assert macro is incorrectly defined!
|
||||
// If your macro uses multiple statements, it NEEDS to be surrounded by a 'do { ... } while (0)' block.
|
||||
// This is a common C/C++ idiom to allow multiple statements macros to be used in control flow blocks.)
|
||||
// #define IM_ASSERT(EXPR) if (SomeCode(EXPR)) SomeMoreCode(); // Wrong!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue