diff options
| author | Martin Ridgers <[email protected]> | 2021-10-12 14:16:39 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-12 14:17:13 +0200 |
| commit | 1fc5d199509422e303935a39f85a2c7f9149d9a7 (patch) | |
| tree | 6037383bacd06bb48a1847b1e6bf7ee504f210de /zenstore/compactcas.h | |
| parent | Corrected incorrect casing of include statements (diff) | |
| download | zen-1fc5d199509422e303935a39f85a2c7f9149d9a7.tar.xz zen-1fc5d199509422e303935a39f85a2c7f9149d9a7.zip | |
Only include zencore/windows.h on Windows
Diffstat (limited to 'zenstore/compactcas.h')
| -rw-r--r-- | zenstore/compactcas.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/zenstore/compactcas.h b/zenstore/compactcas.h index 416542e86..47e989fe9 100644 --- a/zenstore/compactcas.h +++ b/zenstore/compactcas.h @@ -9,11 +9,14 @@ #include <zencore/string.h> #include <zencore/thread.h> #include <zencore/uid.h> -#include <zencore/windows.h> #include <zenstore/basicfile.h> #include <zenstore/CAS.h> #include <zenstore/caslog.h> +#if ZEN_PLATFORM_WINDOWS +# include <zencore/windows.h> +#endif + namespace zen { ////////////////////////////////////////////////////////////////////////// |