Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-09-23 | Avoid const and mutable members | David Robillard | 2 | -8/+8 | |
2023-02-05 | Replace stray uses of "NULL" | David Robillard | 1 | -3/+3 | |
2023-01-14 | Fix old-style cast | David Robillard | 1 | -1/+2 | |
2022-07-20 | Remove redundant inheritance from Noncopyable | David Robillard | 3 | -8/+3 | |
All copy/move methods are explicitly specified by these classes, so inheriting from Noncopyable didn't do anything useful. It should probably be removed as non-idiomatic. | |||||
2022-07-20 | Clean up special member functions and format with clang-format 14 | David Robillard | 9 | -40/+30 | |
2022-07-20 | Use default member initializers | David Robillard | 1 | -5/+3 | |
2022-07-20 | Avoid potential use of uninitialized field | David Robillard | 1 | -4/+3 | |
2022-07-20 | Replace repeated type by braced init list | David Robillard | 1 | -1/+1 | |
2022-07-20 | Use nodiscard attribute | David Robillard | 6 | -16/+22 | |
2022-07-20 | Remove redundant inline specifiers | David Robillard | 7 | -51/+46 | |
2022-07-20 | Adopt REUSE machine-readable licensing standard | David Robillard | 12 | -168/+24 | |
2022-07-20 | Fix whitespace | David Robillard | 1 | -1/+1 | |
2022-06-28 | Remove redundant `struct` keys | David Robillard | 3 | -26/+20 | |
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] | |||||
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 | Make namespace name lowercase | David Robillard | 12 | -28/+28 | |
2021-01-02 | Remove TimeSlice and TimeStamp | David Robillard | 2 | -421/+0 | |
2021-01-02 | Use std::all_of | David Robillard | 1 | -7/+2 | |
2021-01-02 | Format all code with clang-format | David Robillard | 14 | -1330/+1420 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 14 | -28/+14 | |
2020-12-19 | Clean up special member functions | David Robillard | 10 | -16/+57 | |
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 | 1 | -1/+0 | |
2020-12-19 | Suppress warnings with older clang-tidy | David Robillard | 1 | -0/+1 | |
2020-12-19 | Avoid "else" after "return" | David Robillard | 5 | -20/+30 | |
2020-12-16 | Fix build with older GCC | David Robillard | 1 | -1/+1 | |
This reverts commit 57602cd13969d72cfae284bccdeee1ac6bf15c1e. | |||||
2020-12-14 | Clean up includes | David Robillard | 9 | -10/+7 | |
2020-12-14 | Remove redundant override specifier | David Robillard | 1 | -1/+1 | |
2020-11-12 | Add final qualifier to enable devirtualization | David Robillard | 1 | -1/+1 | |
2020-11-12 | Use separate clang-tidy configurations for headers and tests | David Robillard | 1 | -2/+2 | |
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 | 14 | -0/+2081 | |