diff options
| author | Stefan Boberg <[email protected]> | 2021-10-24 13:22:06 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-10-24 13:22:06 +0200 |
| commit | b7800f89d20491f998471324a6e450ac2e64c0b8 (patch) | |
| tree | 1f616cd47ad2a4c871ab1c58025543d9fde30091 /zenserver/projectstore.h | |
| parent | clang-format (diff) | |
| download | zen-b7800f89d20491f998471324a6e450ac2e64c0b8.tar.xz zen-b7800f89d20491f998471324a6e450ac2e64c0b8.zip | |
general: Fixed up some vcxproj files which had a warning level set
Thus they did not get the same settings as all other projects which made it easy to introduce warnings which would trigger in xmake builds
Cleaned up some #include usage to use third-party include brackets
Diffstat (limited to 'zenserver/projectstore.h')
| -rw-r--r-- | zenserver/projectstore.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/zenserver/projectstore.h b/zenserver/projectstore.h index c9f49217a..83d3986bb 100644 --- a/zenserver/projectstore.h +++ b/zenserver/projectstore.h @@ -2,6 +2,7 @@ #pragma once +#include <zencore/logging.h> #include <zencore/uid.h> #include <zencore/xxhash.h> #include <zenhttp/httpserver.h> @@ -9,13 +10,15 @@ #include <zenstore/caslog.h> #include <zenstore/cidstore.h> -#include <tsl/robin_map.h> -#include <zencore/logging.h> #include <filesystem> #include <map> #include <optional> #include <string> +ZEN_THIRD_PARTY_INCLUDES_START +#include <tsl/robin_map.h> +ZEN_THIRD_PARTY_INCLUDES_END + namespace zen { class CbPackage; |