Skip to content

Commit 4b45306

Browse files
committed
Fix casing of "BaseTsd.h" include
Microsoft isn't consistent about the casing of header filenames in the Windows SDK and documentation (e.g. "Windows.h" vs. "windows.h"), but this doesn't matter on a case-insensitive filesystem. If you are cross-compiling for Windows (e.g. using gcc), then the case matters, and is practically controlled by the w32api headers provided by MinGW64 project.
1 parent 5e1ac6a commit 4b45306

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

win32/regex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ extern "C" {
1212
#define CHARCLASS_NAME_MAX 14
1313
#define RE_DUP_MAX 255
1414

15-
#include <BaseTsd.h>
15+
#include <basetsd.h>
1616
typedef SSIZE_T regoff_t;
1717
// #include <bits/alltypes.h>
1818

0 commit comments

Comments
 (0)