1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

LibGfx: Mark Vector3 class final

This commit is contained in:
Stephan Unverwerth 2021-04-18 15:29:44 +02:00 committed by Andreas Kling
parent 0a557d65a0
commit b0e5e78a01

View file

@ -10,7 +10,7 @@
namespace Gfx { namespace Gfx {
template<typename T> template<typename T>
class Vector3 { class Vector3 final {
public: public:
Vector3() = default; Vector3() = default;
Vector3(T x, T y, T z) Vector3(T x, T y, T z)