We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec18d09 commit a7650f8Copy full SHA for a7650f8
src/time_zone_format.cc
@@ -13,10 +13,10 @@
13
// limitations under the License.
14
15
#if !defined(HAS_STRPTIME)
16
-# if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__VXWORKS__)
17
-# define HAS_STRPTIME 1 // Assume everyone else has strptime().
18
-# else
+# if defined(_MSC_VER) || defined(__MINGW32__) || defined(__VXWORKS__)
19
# define HAS_STRPTIME 0
+# else
+# define HAS_STRPTIME 1 // Assume everyone else has strptime().
20
# endif
21
#endif
22
0 commit comments