From bcf8d2aef48f8b4e61f88fcdcd366fc3e4d926cb Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 23 Apr 2022 16:18:53 +0200 Subject: [PATCH] fix(Clang/CMake): -Wdeprecated-copy warning in G3D (#11471) * cherry-pick commit (https://github.com/TrinityCore/TrinityCore/commit/a650bd631a4681d09e3ff66f79b73b99299565f3) Co-authored-by: Shauren Co-authored-by: Kargatum --- deps/g3dlite/include/G3D/Vector3.h | 1 - 1 file changed, 1 deletion(-) diff --git a/deps/g3dlite/include/G3D/Vector3.h b/deps/g3dlite/include/G3D/Vector3.h index 1c42513b4..05d9b11ed 100644 --- a/deps/g3dlite/include/G3D/Vector3.h +++ b/deps/g3dlite/include/G3D/Vector3.h @@ -128,7 +128,6 @@ public: Axis primaryAxis() const; // assignment and comparison - Vector3& operator=(const Vector3& rkVector) = default; Vector3& operator=(const Any& a); bool operator== (const Vector3& rkVector) const; bool operator!= (const Vector3& rkVector) const;