1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Declare ImVec2 and ImVec4 constructors as constexpr (#4995)

This commit is contained in:
Jeff Mears 2022-02-07 17:09:43 -08:00 committed by ocornut
parent 955aacfbc5
commit 71f98dd056
2 changed files with 6 additions and 5 deletions

View file

@ -40,6 +40,7 @@ Breaking changes:
Other Changes:
- Stack Tool: Added option to copy item path to clipboard. (#4631)
- Misc: Added constexpr to ImVec2/ImVec4 inline constructors. (#4995) [@Myriachan]
- Drawlist: Fixed PathArcTo() emitting terminating vertices too close to arc vertices. (#4993) [@thedmd]