diff options
| author | Per Larsson <[email protected]> | 2022-04-28 09:05:07 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2022-04-28 09:05:07 +0200 |
| commit | 971faf7906975c3769d137113f58160ae3528b44 (patch) | |
| tree | 5375f14ed98a1381a5fa74c8a479e5d33e76e52e /zencore/compactbinary.cpp | |
| parent | Serialize compact binary from JSON. (diff) | |
| download | zen-971faf7906975c3769d137113f58160ae3528b44.tar.xz zen-971faf7906975c3769d137113f58160ae3528b44.zip | |
Added missing includes.
Diffstat (limited to 'zencore/compactbinary.cpp')
| -rw-r--r-- | zencore/compactbinary.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zencore/compactbinary.cpp b/zencore/compactbinary.cpp index 00c5aa0de..a51253989 100644 --- a/zencore/compactbinary.cpp +++ b/zencore/compactbinary.cpp @@ -3,6 +3,7 @@ #include "zencore/compactbinary.h" #include <zencore/base64.h> +#include <zencore/compactbinarybuilder.h> #include <zencore/compactbinaryvalidation.h> #include <zencore/compactbinaryvalue.h> #include <zencore/compress.h> @@ -22,10 +23,9 @@ # include <time.h> #endif -#if ZEN_WITH_TESTS -# include <json11.hpp> -# include <zencore/compactbinarybuilder.h> -#endif +ZEN_THIRD_PARTY_INCLUDES_START +#include <json11.hpp> +ZEN_THIRD_PARTY_INCLUDES_END namespace zen { |