From 13b6651749c220bb2e6f8221d75a72c7780848b0 Mon Sep 17 00:00:00 2001 From: Gary Lafortune Date: Fri, 3 Nov 2023 00:51:48 -0500 Subject: [PATCH] Small change to make fix C++17 compat --- Terminal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.cpp b/Terminal.cpp index b95cce2..98f2ce7 100644 --- a/Terminal.cpp +++ b/Terminal.cpp @@ -64,7 +64,7 @@ void Terminal::SetColor(std::ostream& stream, Color color) { SetConsoleTextAttribute(hConsole, 7); return; } - static std::unordered_map colorMap = { + static HashTable colorMap = { {Color::Red, WindowsColor::Red}, {Color::Green, WindowsColor::Green}, {Color::Yellow, WindowsColor::Yellow},