From 019f29e28ad88e1af0d9f0ebda32512e6636bfb1 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Sun, 24 Mar 2024 03:42:15 +0800 Subject: [PATCH] Vector.cpp: add required header Closes: https://github.com/hyprwm/Hypr/issues/125 --- src/helpers/Vector.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/helpers/Vector.cpp b/src/helpers/Vector.cpp index 0c2ff76..3c6a78f 100644 --- a/src/helpers/Vector.cpp +++ b/src/helpers/Vector.cpp @@ -1,4 +1,5 @@ #include "Vector.hpp" +#include Vector2D::Vector2D(double xx, double yy) { x = xx; @@ -16,4 +17,4 @@ double Vector2D::normalize() { y /= max; return max; -} \ No newline at end of file +}