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
This commit is contained in:
EddieBreeg
2025-10-29 10:58:34 +01:00
committed by GitHub
parent e778c84cd6
commit 95f09deaae

View File

@@ -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);