Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-07-20 | Update project metadata | David Robillard | 1 | -25/+25 | |
2022-07-20 | Switch to meson build system | David Robillard | 18 | -3508/+572 | |
2022-07-14 | Update clang-tidy and IWYU configuration for clang 14 | David Robillard | 4 | -2/+17 | |
2022-06-28 | Remove redundant `struct` keys | David Robillard | 4 | -27/+21 | |
Because this is C++ code, GCC 12 says things like: Socket.hpp:166:24: error: redundant class-key ‘struct’ in reference to ‘struct sockaddr_un’ [-Werror=redundant-tags] | |||||
2022-05-27 | Build as C++14 | David Robillard | 1 | -1/+1 | |
2021-03-15 | Clean up clang-tidy configuration | David Robillard | 2 | -7/+1 | |
2021-01-07 | Make include mappings more general | David Robillard | 1 | -4/+9 | |
Though only <ctime> is needed by Raul, having that mapping will suggest it even in C code when included as a subproject. So, add the C variant as well so that include-what-you-use does not complain about either. | |||||
2021-01-07 | Clean up documentation comments | David Robillard | 12 | -187/+216 | |
2021-01-07 | Add missing documentation | David Robillard | 1 | -0/+4 | |
2021-01-02 | Fix typo | David Robillard | 1 | -1/+1 | |
2021-01-02 | Make namespace name lowercase | David Robillard | 24 | -61/+62 | |
2021-01-02 | Suppress include warning from the use of struct timespec | David Robillard | 1 | -7/+8 | |
On 64-bit Linux, this structure uses __syscall_slong_t for tv_nsec, which confuses include-what-you-use. I can't think of a way to properly address this generally, so just declare it as coming from ctime, which is what Semaphore gets it from. | |||||
2021-01-02 | Remove unused generated configuration header | David Robillard | 1 | -2/+0 | |
2021-01-02 | Remove TimeSlice and TimeStamp | David Robillard | 6 | -476/+3 | |
2021-01-02 | Normalize NEWS file | David Robillard | 1 | -50/+42 | |
2021-01-02 | Update autowaf | David Robillard | 1 | -0/+0 | |
2021-01-02 | Use std::all_of | David Robillard | 3 | -9/+2 | |
2021-01-02 | Suppress warnings about redundant "override" | David Robillard | 2 | -0/+12 | |
2021-01-02 | Run checks on headers | David Robillard | 2 | -0/+4 | |
2021-01-02 | Format all code with clang-format | David Robillard | 26 | -1786/+1907 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 25 | -50/+25 | |
2020-12-19 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-12-19 | Clean up special member functions | David Robillard | 13 | -18/+64 | |
2020-12-19 | Avoid repeating return types | David Robillard | 1 | -2/+2 | |
2020-12-19 | Update include mapping for older include-what-you-use | David Robillard | 2 | -2/+5 | |
2020-12-19 | Suppress warnings with older clang-tidy | David Robillard | 3 | -6/+3 | |
2020-12-19 | Avoid "else" after "return" | David Robillard | 8 | -24/+33 | |
2020-12-16 | Fix build with older GCC | David Robillard | 2 | -2/+4 | |
This reverts commit 57602cd13969d72cfae284bccdeee1ac6bf15c1e. | |||||
2020-12-14 | Clean up includes | David Robillard | 11 | -10/+16 | |
2020-12-14 | Suppress new clang-tidy warnings | David Robillard | 1 | -0/+5 | |
2020-12-14 | Remove redundant override specifier | David Robillard | 1 | -1/+1 | |
2020-11-23 | Fix header installation | David Robillard | 1 | -2/+1 | |
2020-11-15 | Fix documentation build | David Robillard | 1 | -1/+1 | |
2020-11-15 | Remove deprecated Doxygen configuration values | David Robillard | 1 | -30/+0 | |
2020-11-12 | Suppress MSVC warnings | David Robillard | 1 | -0/+3 | |
2020-11-12 | Suppress warnings in release build | David Robillard | 1 | -0/+2 | |
2020-11-12 | Add final qualifier to enable devirtualization | David Robillard | 1 | -1/+1 | |
2020-11-12 | Remove checks for standard headers | David Robillard | 1 | -3/+0 | |
2020-11-12 | Use separate clang-tidy configurations for headers and tests | David Robillard | 4 | -13/+34 | |
2020-11-12 | Simplify boolean return expression | David Robillard | 1 | -5/+1 | |
2020-11-12 | Use inline for bare functions rather than static inline | David Robillard | 1 | -1/+1 | |
This avoids warnings about unused functions. | |||||
2020-11-12 | Fix include guards | David Robillard | 1 | -3/+3 | |
2020-11-12 | Move includes to a conventional include directory | David Robillard | 16 | -2/+5 | |
2020-07-18 | Add more powerful lint target | David Robillard | 2 | -28/+91 | |
2020-07-18 | Use everything in build test | David Robillard | 1 | -2/+49 | |
Annoyingly, include-what-you-use does not have a suppression mechanism, so minimally use everything in the build test to avoid include warnings. | |||||
2020-07-18 | Fix various clang-tidy warnings | David Robillard | 6 | -9/+15 | |
2020-07-18 | Add missing consts | David Robillard | 2 | -2/+2 | |
2020-07-18 | Remove superfluous const | David Robillard | 1 | -1/+1 | |
2020-07-18 | Implement Array move operators by hand | David Robillard | 1 | -2/+11 | |
I'm not sure why Apple clang has a problem with this, but clang-tidy (rightly) warns about move operators that aren't noexcept, so just define them manually. | |||||
2020-07-18 | Fix Array self-assignment | David Robillard | 1 | -0/+4 | |