Skip to content

Commit 6b23e4e

Browse files
committed
Change Quantity type from uint64_t to int64_t for consistency in orderbook types
1 parent 3680435 commit 6b23e4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/slick/orderbook/types.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ SLICK_NAMESPACE_BEGIN
1818
using Price = int64_t;
1919

2020
/// Quantity type - volume or size
21-
using Quantity = uint64_t;
21+
using Quantity = int64_t;
2222

2323
/// Unique order identifier
2424
using OrderId = uint64_t;

0 commit comments

Comments
 (0)