Skip to content

Commit b6b8f66

Browse files
thedmdocornut
authored andcommitted
ImVector: Fixed erase() with empty range. (#5009)
1 parent 5854da1 commit b6b8f66

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: docs/CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Other Changes:
4141

4242
- Stack Tool: Added option to copy item path to clipboard. (#4631)
4343
- Misc: Added constexpr to ImVec2/ImVec4 inline constructors. (#4995) [@Myriachan]
44+
- ImVector: Fixed erase() with empty range. (#5009) [@thedmd]
4445
- Drawlist: Fixed PathArcTo() emitting terminating vertices too close to arc vertices. (#4993) [@thedmd]
4546

4647

Diff for: imgui.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Index of this file:
6565
// Version
6666
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals. Work in progress versions typically starts at XYY99 then bounce up to XYY00, XYY01 etc. when release tagging happens)
6767
#define IMGUI_VERSION "1.88 WIP"
68-
#define IMGUI_VERSION_NUM 18703
68+
#define IMGUI_VERSION_NUM 18704
6969
#define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx))
7070
#define IMGUI_HAS_TABLE
7171

0 commit comments

Comments
 (0)