瀏覽代碼

Fix div return statement

mawinkle 6 年之前
父節點
當前提交
a664e32f3f
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      BigInt64.hpp

+ 1 - 0
BigInt64.hpp

@@ -95,6 +95,7 @@ struct BigInt{
 			*it = (uint64_t)(temp / d);
 			carry <<= 64;
 		}
+		return *this;
 	}
 	inline uint64_t mod(uint64_t m)const{
 		lui carry = 0;