diff options
author | John Wiegley <johnw@newartisans.com> | 2016-09-17 14:41:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-17 14:41:15 -0700 |
commit | 132156766770da8340138aab117cf7e37787403c (patch) | |
tree | 5f837949c367f435d947833c6f52e37473357ee6 /test | |
parent | a3b573e1107729e743c96da8ed9272361ba6ae31 (diff) | |
parent | c193cc3a5b4dbf39e19744cf4d30e616298eaa86 (diff) | |
download | fork-ledger-132156766770da8340138aab117cf7e37787403c.tar.gz fork-ledger-132156766770da8340138aab117cf7e37787403c.tar.bz2 fork-ledger-132156766770da8340138aab117cf7e37787403c.zip |
Merge pull request #466 from schmave/win-1
Fix build under msys32; add Appveyor continuous build
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/t_value.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/unit/t_value.cc b/test/unit/t_value.cc index 2daedcb1..398e075b 100644 --- a/test/unit/t_value.cc +++ b/test/unit/t_value.cc @@ -6,6 +6,10 @@ #include "value.h" +#ifdef _WIN32 +#include "strptime.h" +#endif + using namespace ledger; struct value_fixture { |