Skip to content

Commit 105aeb9

Browse files
committed
Removed operator that's now duplicated in mainline imgui
1 parent 67e85c2 commit 105aeb9

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Diff for: imgui_extra_math.inl

-6
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ inline ImVec2 operator*(const float lhs, const ImVec2& rhs)
3434
return ImVec2(lhs * rhs.x, lhs * rhs.y);
3535
}
3636

37-
inline ImVec2 operator-(const ImVec2& lhs)
38-
{
39-
return ImVec2(-lhs.x, -lhs.y);
40-
}
41-
42-
4337
//------------------------------------------------------------------------------
4438
inline float ImLength(float v)
4539
{

0 commit comments

Comments
 (0)