Skip to content

Commit a7650f8

Browse files
committed
Inverted the condition for clarity
1 parent ec18d09 commit a7650f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/time_zone_format.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
// limitations under the License.
1414

1515
#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
16+
# if defined(_MSC_VER) || defined(__MINGW32__) || defined(__VXWORKS__)
1917
# define HAS_STRPTIME 0
18+
# else
19+
# define HAS_STRPTIME 1 // Assume everyone else has strptime().
2020
# endif
2121
#endif
2222

0 commit comments

Comments
 (0)