diff options
author | David Robillard <d@drobilla.net> | 2021-09-15 22:18:13 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-09-15 22:18:13 -0400 |
commit | 1f5c42737fff4f222be0edb628fede2eb4dfeb91 (patch) | |
tree | c5709eca63f43d55cd424cf0aa93c5a0983dabca | |
parent | 80b01dd8344c2469e943726769c5ec6b8fc53401 (diff) | |
download | zix-1f5c42737fff4f222be0edb628fede2eb4dfeb91.tar.gz zix-1f5c42737fff4f222be0edb628fede2eb4dfeb91.tar.bz2 zix-1f5c42737fff4f222be0edb628fede2eb4dfeb91.zip |
Add redundant forward declaration to appease clang-tidy
-rw-r--r-- | include/zix/allocator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/zix/allocator.h b/include/zix/allocator.h index f1737be..bcffda5 100644 --- a/include/zix/allocator.h +++ b/include/zix/allocator.h @@ -19,6 +19,8 @@ extern "C" { @{ */ +struct ZixAllocatorImpl; + /** A memory allocator. |