fix missing parthesis.

This commit is contained in:
kimkulling
2020-03-19 17:07:21 +01:00
parent 5b8e6832c3
commit 2ee948eb84

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
}
};