fix missing parthesis.

pull/3012/head
kimkulling 2020-03-19 17:07:21 +01:00
parent 5b8e6832c3
commit 2ee948eb84
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class X3DExporter {
SAttribute(SAttribute && rhs) :
Name(std::move(rhs.Name)),
Value(std::move(rhs.Value) {
Value(std::move(rhs.Value)) {
// empty
}
};