浏览代码

Fix CI build.

Alexander Gessler 11 年之前
父节点
当前提交
d5db6f39e6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      code/StreamWriter.h

+ 1 - 1
code/StreamWriter.h

@@ -138,7 +138,7 @@ public:
 	// ---------------------------------------------------------------------
 	/** Write a signed 64 bit integer to the stream */
 	void PutI8(int64_t n)	{
-		Put<int64_t>n();
+		Put(n);
 	}
 
 	// ---------------------------------------------------------------------