aboutsummaryrefslogtreecommitdiffstats
path: root/include/lv2
AgeCommit message (Collapse)AuthorFilesLines
2023-09-23Add lv2_util.h to documentationDavid Robillard2-2/+2
2023-09-23Add missing symbol exports for dynmanifest APIDavid Robillard1-0/+4
2023-09-22Add missing const qualifiersDavid Robillard3-6/+6
2023-08-23Suppress clang-tidy warningDavid Robillard1-0/+1
2023-05-29Fix field order in LV2_Atom_Sequence_Body documentationDavid Robillard1-1/+1
2023-04-30Avoid or suppress clang-tidy warnings in utility headersDavid Robillard2-5/+18
2023-02-04Fix clang and clang-tidy warnings in WindowsDavid Robillard3-8/+8
2023-02-04Fix whitespaceDavid Robillard1-15/+14
2022-12-15Remove double size check entirelyDavid Robillard1-4/+0
It turns out that, since this header is widely included in dependants, removing the conditional in the previous commit triggers undocumented warnings downstream. Since the check is pretty esoteric anyway, and has been widely included across most of the LV2 ecosystem for a decade and never once come up, I think it's safe to just delete this and be done with the hassle.
2022-12-11Remove doxygen conditionalDavid Robillard1-3/+1
This triggers a warning in clang, so achieve the same thing (keeping this out of the documentation) by simply not documenting the definition.
2022-12-11Clean up include guardsDavid Robillard30-81/+86
2022-12-10Allow LV2_SYMBOL_EXPORT to be overriddenDavid Robillard1-5/+7
2022-09-09Use uppercase integer literal suffixesDavid Robillard3-10/+10
2022-09-08Adopt REUSE machine-readable licensing standardDavid Robillard30-460/+66
2022-07-17Fix outdated doc commentsDavid Robillard1-12/+4
2022-07-17Rearrange source tree to be directly usable by dependantsDavid Robillard30-0/+5635
This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows.