Browse Source

fix missing parthesis.

kimkulling 5 years ago
parent
commit
2ee948eb84
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/X3D/X3DExporter.hpp

+ 1 - 1
code/X3D/X3DExporter.hpp

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