Skip to content

Commit b83812a

Browse files
committed
Fix Cygwin failures
1 parent c832f18 commit b83812a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parsers_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ void test_environment()
308308
("bar", new untyped_value, "")
309309
;
310310

311-
#if (defined(_WIN32) && ! defined(BOOST_BORLANDC) && ! defined(BOOST_EMBTC)) || (defined(__CYGWIN__))
311+
#if defined(_WIN32) && ! defined(BOOST_BORLANDC) && ! defined(BOOST_EMBTC)
312312
_putenv("PO_TEST_FOO=1");
313313
#else
314314
putenv(const_cast<char*>("PO_TEST_FOO=1"));

0 commit comments

Comments
 (0)