Skip to content

Commit

Permalink
Small change to make fix C++17 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
Altoids1 committed Nov 3, 2023
1 parent 8d65762 commit 13b6651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Terminal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void Terminal::SetColor(std::ostream& stream, Color color) {
SetConsoleTextAttribute(hConsole, 7);
return;
}
static std::unordered_map<Color, WindowsColor> colorMap = {
static HashTable<Color, WindowsColor> colorMap = {
{Color::Red, WindowsColor::Red},
{Color::Green, WindowsColor::Green},
{Color::Yellow, WindowsColor::Yellow},
Expand Down

0 comments on commit 13b6651

Please sign in to comment.