浏览代码

fix missing parthesis.

kimkulling 5 年之前
父节点
当前提交
2ee948eb84
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
         }
     };