Skip to content

Commit 3582b22

Browse files
committed
Fix hardcoded typeof check result for Windows
The test result that I had blindly stipulated didn't work out on the build farm, so disable the feature in Windows MSVC for now.
1 parent ddce628 commit 3582b22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/pg_config.h.win32

+2-2
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@
455455
#define HAVE_TOWLOWER 1
456456

457457
/* Define to 1 if your compiler understands `typeof' or something similar. */
458-
#define HAVE_TYPEOF 1
458+
/* #undef HAVE_TYPEOF */
459459

460460
/* Define to 1 if you have the external array `tzname'. */
461461
/* #undef HAVE_TZNAME */
@@ -687,4 +687,4 @@
687687
/* #undef signed */
688688

689689
/* Define to how the compiler spells `typeof'. */
690-
#define typeof decltype
690+
/* #undef typeof */

0 commit comments

Comments
 (0)