aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-10-12 12:00:02 +1100
committerNeil <nyamatongwe@gmail.com>2021-10-12 12:00:02 +1100
commit8c07d7f5b68ccb39469dcde13d6d401c3ebb35b4 (patch)
treeeccf4f22b902c5058f684b7504b1dee549594cfd
parent946850cad5a3d880554352f55bd8ea7397b6e7bd (diff)
downloadscintilla-mirror-8c07d7f5b68ccb39469dcde13d6d401c3ebb35b4.tar.gz
Feature [feature-requests:#1416] Drop static in unnamed namespace.
-rw-r--r--win32/PlatWin.cxx2
1 files changed, 1 insertions, 1 deletions
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)) {