We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9ab1d5 commit a27af58Copy full SHA for a27af58
2 files changed
library/Console-windows.cpp
@@ -509,7 +509,7 @@ bool WindowsConsole::init(bool)
509
return true;
510
}
511
// FIXME: looks awfully empty, doesn't it?
512
-bool Console::shutdown(void)
+bool WindowsConsole::shutdown(void)
513
{
514
std::lock_guard<std::recursive_mutex> lock{*wlock};
515
FreeConsole();
library/Console.cpp
@@ -9,7 +9,7 @@ std::unique_ptr<Console> Console::makeConsole() {
9
10
// Return the Windows console
11
#if defined(_WIN32) || defined(_WIN64)
12
- return std::make_unique<WindowsConsole>();
+ return std::make_unique<WindowsConsole>();
13
14
// Return Posix console if launched from a supported terminal
15
#elif defined(__linux__) || defined(__unix__) || defined(__APPLE__)
0 commit comments