diff options
author | David Robillard <d@drobilla.net> | 2022-12-11 10:19:35 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-12-11 13:15:02 -0500 |
commit | f4fe410e75c0fd3aec2fd6ee20be1571221a1700 (patch) | |
tree | fb93beae498ee6bb3b2bbf949295f52f9ea5eff2 /include/lv2 | |
parent | 8adcececdb37a3b0c547ed59ad49d9fd7b69eae9 (diff) | |
download | lv2-f4fe410e75c0fd3aec2fd6ee20be1571221a1700.tar.xz |
Remove doxygen conditional
This triggers a warning in clang, so achieve the same thing (keeping this out
of the documentation) by simply not documenting the definition.
Diffstat (limited to 'include/lv2')
-rw-r--r-- | include/lv2/atom/atom.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/lv2/atom/atom.h b/include/lv2/atom/atom.h index 1e27878..59816e5 100644 --- a/include/lv2/atom/atom.h +++ b/include/lv2/atom/atom.h @@ -62,11 +62,9 @@ extern "C" { #endif -/** @cond */ -/** This expression will fail to compile if double does not fit in 64 bits. */ +// This expression will fail to compile if double does not fit in 64 bits typedef char lv2_atom_assert_double_fits_in_64_bits [((sizeof(double) <= sizeof(uint64_t)) * 2) - 1]; -/** @endcond */ /** Return a pointer to the contents of an Atom. The "contents" of an atom |