Windows: Match the name case of included files

Although Windows is case insensitive, and lower case always works, Clang
complains:

Lexical or Preprocessor Issue: warning: non-portable path to file
'<FooBar.h>'; specified path differs in case from file name on disk

Change-Id: I8f94e9fb62f6afec8aa6b9d08a7c78f6ba8a4435
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Alessandro Portale
2018-07-12 11:33:06 +02:00
parent 9edd80770e
commit 1c014ed3d9
28 changed files with 28 additions and 28 deletions

View File

@@ -45,7 +45,7 @@ static inline QString msgCannotInterrupt(qint64 pid, const QString &why)
#define _WIN32_WINNT 0x0501 /* WinXP, needed for DebugBreakProcess() */
#include <utils/winutils.h>
#include <windows.h>
#include <Windows.h>
#if !defined(PROCESS_SUSPEND_RESUME) // Check flag for MinGW
# define PROCESS_SUSPEND_RESUME (0x0800)