diff --git a/Userland/Libraries/LibGfx/AffineTransform.h b/Userland/Libraries/LibGfx/AffineTransform.h index f6abcec665..9cdb931219 100644 --- a/Userland/Libraries/LibGfx/AffineTransform.h +++ b/Userland/Libraries/LibGfx/AffineTransform.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include #include @@ -29,13 +30,13 @@ public: void map(float unmapped_x, float unmapped_y, float& mapped_x, float& mapped_y) const; - template + template Point map(Point const&) const; - template + template Size map(Size const&) const; - template + template Rect map(Rect const&) const; Quad map_to_quad(Rect const&) const;