소스 검색

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