kraken: book: make 'Order' default constructible

This commit is contained in:
Bruno BELANYI 2022-03-24 17:50:36 +01:00
parent 654be9fc70
commit a95df7a00f
1 changed files with 1 additions and 1 deletions

View File

@ -66,6 +66,6 @@ struct FlushOrder {
auto operator<=>(FlushOrder const&) const = default;
};
using Order = std::variant<TradeOrder, CancelOrder, FlushOrder>;
using Order = std::variant<FlushOrder, TradeOrder, CancelOrder>;
} // namespace kraken