From d14f48a147190989d9b58f7b56429ac8711be077 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Tue, 11 Jan 2022 07:32:46 +0000
Subject: [PATCH] Don't static compile on Darwin systems

---
 book.hpp |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/book.hpp b/book.hpp
index ae89819..04de3a7 100644
--- a/book.hpp
+++ b/book.hpp
@@ -6,6 +6,7 @@
 #include <iostream>
 #include <queue>
 #include <string>
+#include <unordered_map>
 #include <vector>
 
 namespace book
@@ -42,8 +43,8 @@
 std::ostream& operator<<(std::ostream& out, const Level& a);
 
 struct Book {
-	std::vector<Level> bidSide;
-	std::vector<Level> askSide;
+	std::unordered_map<std::string, Level> bidSide;
+	std::unordered_map<std::string, Level> askSide;
 	ProductTypeEnum productType;
 	std::string product;
 	int stationId;

--
Gitblit v1.9.3