add mssing move constructor.

pull/3012/head
kimkulling 2020-03-19 16:53:05 +01:00
parent de06c860ea
commit 5b8e6832c3
2 changed files with 6 additions and 2 deletions

View File

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

View File

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