diff options
| author | Martin Ridgers <[email protected]> | 2021-12-01 09:32:16 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-12-02 11:35:46 +0100 |
| commit | 97f401c327f3c765c917f97745acbbab4a5fbf1b (patch) | |
| tree | 354b960d3f3a6d0c90103c286518358de0a1e4aa | |
| parent | As a general rule include (seem) to be orderedl zen, 3rd-party, system (diff) | |
| download | zen-97f401c327f3c765c917f97745acbbab4a5fbf1b.tar.xz zen-97f401c327f3c765c917f97745acbbab4a5fbf1b.zip | |
Ifdef'd Windows-only include
| -rw-r--r-- | zen/cmds/hash.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zen/cmds/hash.cpp b/zen/cmds/hash.cpp index 7d234c2da..d9d137f61 100644 --- a/zen/cmds/hash.cpp +++ b/zen/cmds/hash.cpp @@ -7,7 +7,9 @@ #include <zencore/string.h> #include <zencore/timer.h> -#include <ppl.h> +#if ZEN_PLATFORM_WINDOWS +# include <ppl.h> +#endif namespace zen { |