Browse Source

add mssing move constructor.

kimkulling 5 years ago
parent
commit
5b8e6832c3
2 changed files with 6 additions and 2 deletions
  1. 6 0
      code/X3D/X3DExporter.hpp
  2. 0 2
      include/assimp/matrix3x3.inl

+ 6 - 0
code/X3D/X3DExporter.hpp

@@ -62,6 +62,12 @@ class X3DExporter {
                 Value(value) {
             // empty
         }
+
+        SAttribute(SAttribute && rhs) :
+                Name(std::move(rhs.Name)),
+                Value(std::move(rhs.Value) {
+            // empty
+        }
     };
 
     /***********************************************/

+ 0 - 2
include/assimp/matrix3x3.inl

@@ -5,8 +5,6 @@ Open Asset Import Library (assimp)
 
 Copyright (c) 2006-2020, assimp team
 
-
-
 All rights reserved.
 
 Redistribution and use of this software in source and binary forms,