From 8c07d7f5b68ccb39469dcde13d6d401c3ebb35b4 Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 12 Oct 2021 12:00:02 +1100 Subject: Feature [feature-requests:#1416] Drop static in unnamed namespace. --- win32/PlatWin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 4e4a46bc8..aaa6d57d6 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -2676,7 +2676,7 @@ void Window::SetPosition(PRectangle rc) { namespace { -static RECT RectFromMonitor(HMONITOR hMonitor) noexcept { +RECT RectFromMonitor(HMONITOR hMonitor) noexcept { MONITORINFO mi = {}; mi.cbSize = sizeof(mi); if (GetMonitorInfo(hMonitor, &mi)) { -- cgit v1.2.3