diff options
author | Stephan Unverwerth <s.unverwerth@gmx.de> | 2021-04-18 15:29:44 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-08 10:13:22 +0200 |
commit | b0e5e78a01471c39ac8e4aaac05b1b2f48f71973 (patch) | |
tree | fc7bad00b98e74881e6393d282f9f6e339ad1b84 /Userland/Libraries/LibGfx/Vector3.h | |
parent | 0a557d65a0ba9459005ead72084565394b6ebc34 (diff) | |
download | serenity-b0e5e78a01471c39ac8e4aaac05b1b2f48f71973.zip |
LibGfx: Mark Vector3 class final
Diffstat (limited to 'Userland/Libraries/LibGfx/Vector3.h')
-rw-r--r-- | Userland/Libraries/LibGfx/Vector3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/Vector3.h b/Userland/Libraries/LibGfx/Vector3.h index 17afd82b83..49c8c05afc 100644 --- a/Userland/Libraries/LibGfx/Vector3.h +++ b/Userland/Libraries/LibGfx/Vector3.h @@ -10,7 +10,7 @@ namespace Gfx { template<typename T> -class Vector3 { +class Vector3 final { public: Vector3() = default; Vector3(T x, T y, T z) |