diff options
author | John Wiegley <johnw@newartisans.com> | 2016-10-02 10:32:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-02 10:32:25 -0700 |
commit | ca9877ff417325ce35848c96f46f23a334e53bfe (patch) | |
tree | 3675bd14ef1947dffd9da8a9a8327961d5a5b17c /test | |
parent | cd58d43228996198b5ba329f7c05109f2aaee65a (diff) | |
parent | c2785590834dfe91574367f4256918c37b6ddfcc (diff) | |
download | fork-ledger-ca9877ff417325ce35848c96f46f23a334e53bfe.tar.gz fork-ledger-ca9877ff417325ce35848c96f46f23a334e53bfe.tar.bz2 fork-ledger-ca9877ff417325ce35848c96f46f23a334e53bfe.zip |
Merge pull request #468 from Vanav/cygwin_fix
Fix build under Cygwin
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/t_value.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/t_value.cc b/test/unit/t_value.cc index 398e075b..a31c84c8 100644 --- a/test/unit/t_value.cc +++ b/test/unit/t_value.cc @@ -6,7 +6,7 @@ #include "value.h" -#ifdef _WIN32 +#if defined(_WIN32) || defined(__CYGWIN__) #include "strptime.h" #endif |