diff options
| author | Stefan Boberg <[email protected]> | 2026-01-19 13:40:35 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-01-19 13:40:35 +0100 |
| commit | cce940527809c155886986c3752b7978dc4cf5ce (patch) | |
| tree | 9a1df6e9b1b648ee4e90d4c333a811027a2b9b9e /src/zenstore/include | |
| parent | OTLP/trace improvements (#717) (diff) | |
| download | zen-cce940527809c155886986c3752b7978dc4cf5ce.tar.xz zen-cce940527809c155886986c3752b7978dc4cf5ce.zip | |
remove ZENCORE_API completely (#718)
initially we had ZENCORE_API macros to potentially allow for DLL linkage. It turns out that this is not useful and the macros just contribute noise, so this change removes them completely.
Diffstat (limited to 'src/zenstore/include')
| -rw-r--r-- | src/zenstore/include/zenstore/caslog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenstore/include/zenstore/caslog.h b/src/zenstore/include/zenstore/caslog.h index 3d95c9c90..f3dd32fb1 100644 --- a/src/zenstore/include/zenstore/caslog.h +++ b/src/zenstore/include/zenstore/caslog.h @@ -41,8 +41,8 @@ private: static const inline uint8_t MagicSequence[16] = {'.', '-', '=', ' ', 'C', 'A', 'S', 'L', 'O', 'G', 'v', '1', ' ', '=', '-', '.'}; - ZENCORE_API uint32_t ComputeChecksum(); - void Finalize() { Checksum = ComputeChecksum(); } + uint32_t ComputeChecksum(); + void Finalize() { Checksum = ComputeChecksum(); } }; static_assert(sizeof(FileHeader) == 64); |