Moved definition of _BSD_SOURCE earlier

This commit is contained in:
Phil Nash 2017-03-01 15:58:57 +00:00
parent ff78e7c45a
commit 673ec550f5
2 changed files with 5 additions and 6 deletions

View File

@ -81,6 +81,10 @@
# define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
# endif
// Required for some versions of Cygwin to declare gettimeofday
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
# define _BSD_SOURCE
#endif // __CYGWIN__
////////////////////////////////////////////////////////////////////////////////

View File

@ -20,13 +20,8 @@
#else
// Required for some versions of Cygwin to declare gettimeofday
// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
# ifdef __CYGWIN__
# define _BSD_SOURCE
# endif
#include <sys/time.h>
#endif
namespace Catch {