From 95f09deaaed342b5f4ac6aa0eb5ad747c476f78b Mon Sep 17 00:00:00 2001 From: EddieBreeg Date: Wed, 29 Oct 2025 10:58:34 +0100 Subject: [PATCH] Removed unnecessary copy constructor declaration in aiVector3t (#6384) * Removed unnecessary copy constructor declaration in aiVector3t * Added copy constructor back in aiVector3t * Added explicit declaration of assignment operator in aiVector3t --- include/assimp/vector3.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/assimp/vector3.h b/include/assimp/vector3.h index 4920b2241..c19b6cf91 100644 --- a/include/assimp/vector3.h +++ b/include/assimp/vector3.h @@ -85,6 +85,10 @@ public: /// @param o The instance to copy from. aiVector3t( const aiVector3t& o ) = default; + /// @brief The copy assignment operator. + /// @param o The instance to copy. + aiVector3t& operator=(const aiVector3t& o) = default; + /// @brief combined operators /// @brief The copy constructor. const aiVector3t& operator += (const aiVector3t& o);