From 16f7f5de542392ef9cfbb2efd51dd8c570a829a7 Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Mon, 27 Apr 2020 11:03:16 +0300 Subject: Missing includes on Windows with --disable-pch ... since b512ce255f46d90e682634e4dd17e146af7f9080. Yes, MSVC also produces an error if the completeness requirements are not met. Change-Id: I0ad573ef1d14a383eed3a8f83aa932657c22ae20 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92963 Tested-by: Mike Kaganski Reviewed-by: Mike Kaganski --- vcl/source/app/svmain.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vcl/source/app/svmain.cxx') diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index 9d861a5cadc6..e571c2f269c5 100644 --- a/vcl/source/app/svmain.cxx +++ b/vcl/source/app/svmain.cxx @@ -82,6 +82,10 @@ #include #include +#ifdef _WIN32 +#include +#endif + #include #include #include -- cgit