Sfoglia il codice sorgente

fix missing parthesis.

kimkulling 5 anni fa
parent
commit
2ee948eb84
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      code/X3D/X3DExporter.hpp

+ 1 - 1
code/X3D/X3DExporter.hpp

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