aboutsummaryrefslogtreecommitdiffstats
path: root/source/imgui/imgui.h
diff options
context:
space:
mode:
authorClyne <clyne@bitgloo.com>2022-05-24 17:38:05 -0400
committerClyne <clyne@bitgloo.com>2022-05-24 17:38:05 -0400
commit5902a67796000c7546d07fa778b26619c4588c3a (patch)
tree1c1fa04635a3c248d07fde4dce8857885ca23952 /source/imgui/imgui.h
parent1cf4908a23dc5537be0bab1089ffcaa7079d5434 (diff)
parentdff847ff4455e7b8c5123167a7d01afe7c45f585 (diff)
Merge pull request 'devel: Ready for pre-release' (#1) from devel into masterv0.1
Reviewed-on: https://code.bitgloo.com/clyne/stmdspgui/pulls/1
Diffstat (limited to 'source/imgui/imgui.h')
-rw-r--r--source/imgui/imgui.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/imgui/imgui.h b/source/imgui/imgui.h
index 182c46a..8d2b376 100644
--- a/source/imgui/imgui.h
+++ b/source/imgui/imgui.h
@@ -243,9 +243,9 @@ typedef unsigned long long ImU64; // 64-bit unsigned integer (post C++11)
IM_MSVC_RUNTIME_CHECKS_OFF
struct ImVec2
{
- float x, y;
- ImVec2() { x = y = 0.0f; }
- ImVec2(float _x, float _y) { x = _x; y = _y; }
+ float x = 0.f, y = 0.f;
+ constexpr ImVec2() = default;
+ constexpr ImVec2(float _x, float _y) : x(_x), y(_y) {}
float operator[] (size_t idx) const { IM_ASSERT(idx <= 1); return (&x)[idx]; } // We very rarely use this [] operator, the assert overhead is fine.
float& operator[] (size_t idx) { IM_ASSERT(idx <= 1); return (&x)[idx]; } // We very rarely use this [] operator, the assert overhead is fine.
#ifdef IM_VEC2_CLASS_EXTRA