aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/atom/forge.h
AgeCommit message (Collapse)AuthorFilesLines
2022-07-17Rearrange source tree to be directly usable by dependantsDavid Robillard1-683/+0
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.
2022-07-17Avoid -Warray-bounds with GCC 10 for arm32David Robillard1-6/+6
I'm not a fan of this style since it makes it possible to mess up the cast (whereas &a.atom always has the right type), but the compiler gets confused about the valid memory bounds otherwise, and it's equivalent anyway.
2022-05-26Suppress new warnings in clang-tidy 13David Robillard1-1/+1
2021-02-22Fix typos in docstringsReuben Thomas1-3/+3
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-26Format all code with clang-formatDavid Robillard1-220/+202
2020-12-26Make include guards surround all header contentsDavid Robillard1-8/+8
For consistency, and because clang-tidy can't figure out if a define is an include guard unless it ends the file.
2020-12-16Clean up includesDavid Robillard1-0/+2
2020-11-17Clean up Doxygen indexDavid Robillard1-0/+3
2020-09-11Fix a mistake in the doc commentsJean Pierre Cimalando1-1/+1
2020-02-23Use the same name for recursive struct typesDavid Robillard1-3/+3
Similar to the previous commit, this was non-standard and caused documentation issues. With this commit, the data structures index page looks as expected. Unlike the previous commit, though, these names are actually needed because the struct definition refers to itself. Simply use the same name instead of the underscore prefix, since the "struct namespace" in C is different anyway.
2019-03-30Fix crash when forging containers into a short bufferDavid Robillard1-3/+11
2019-01-10Sort includes from local to standard and fix exposed issuesDavid Robillard1-3/+3
This order is better because it ensures that headers can stand alone and include everything they need. Several missing includes were exposed by this, and are also fixed in this commit.
2019-01-10Remove workaround for ancient MSVCDavid Robillard1-2/+1
2018-09-23Factor out deprecation attribute and warning boilerplateDavid Robillard1-22/+7
2018-09-23Shrink code slightly by removing some if-else structureDavid Robillard1-11/+5
2018-09-22Install standard headers to simpler include pathsDavid Robillard1-0/+710