From a95df7a00f99efd231dd244143c1df58b1731347 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 24 Mar 2022 17:50:36 +0100 Subject: [PATCH] kraken: book: make 'Order' default constructible --- src/book/order.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/book/order.hh b/src/book/order.hh index 339d050..d11a362 100644 --- a/src/book/order.hh +++ b/src/book/order.hh @@ -66,6 +66,6 @@ struct FlushOrder { auto operator<=>(FlushOrder const&) const = default; }; -using Order = std::variant; +using Order = std::variant; } // namespace kraken