reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit ba172eef7f7f530b1e2a768800b3b867d18dd401
parent 7ece4e058436959d977ab387aa86bf73ac5b2278
Author: George Rawlinson <george@rawlinson.net.nz>
Date:   Sat,  5 Aug 2023 09:10:42 +1200

fix: FTBFS due to GCC 13+ (#72)

As of GCC 13+, certain headers are explicitly required, otherwise
certain projects will fail to build from source.

Upstream has a porting guide[0] that I've used to fix the issue(s)
throughout the codebase.

[0]: https://gcc.gnu.org/gcc-13/porting_to.html
Diffstat:
Msrc/api_helper.hpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/api_helper.hpp b/src/api_helper.hpp @@ -18,6 +18,7 @@ #ifndef REAPACK_API_HELPER_HPP #define REAPACK_API_HELPER_HPP +#include <cstdint> #include <tuple> #include <boost/preprocessor.hpp>