Browse Source

Fix div return statement

mawinkle 6 năm trước cách đây
mục cha
commit
a664e32f3f
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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;