diff options
| author | Martin Ridgers <[email protected]> | 2022-01-07 13:00:08 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-01-07 13:03:11 +0100 |
| commit | 7bf6619e956a27bfcfb719357a431596328b9622 (patch) | |
| tree | 60b28f927295286c9f774b5bc223ddabac0c2594 /zenstore | |
| parent | Enabled POSIX-compatible implementations on Mac (diff) | |
| download | zen-7bf6619e956a27bfcfb719357a431596328b9622.tar.xz zen-7bf6619e956a27bfcfb719357a431596328b9622.zip | |
Moved forward declaration after all include statements
Diffstat (limited to 'zenstore')
| -rw-r--r-- | zenstore/compactcas.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zenstore/compactcas.h b/zenstore/compactcas.h index 974f45a0c..99d8e9e7f 100644 --- a/zenstore/compactcas.h +++ b/zenstore/compactcas.h @@ -14,14 +14,14 @@ #include <zenstore/caslog.h> #include <zenstore/gc.h> -namespace spdlog { -class logger; -} - #if ZEN_PLATFORM_WINDOWS # include <zencore/windows.h> #endif +namespace spdlog { +class logger; +} + namespace zen { ////////////////////////////////////////////////////////////////////////// |