Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update a comment about FlexArray | Chris Robinson | 2024-01-02 | 1 | -2/+3 |
| | |||||
* | Make the flexarray storage span const | Chris Robinson | 2024-01-01 | 1 | -1/+1 |
| | |||||
* | Remove an unnecessary member variable | Chris Robinson | 2024-01-01 | 1 | -27/+23 |
| | |||||
* | Avoid placement new for FlexArray | Chris Robinson | 2023-12-31 | 1 | -17/+16 |
| | |||||
* | Try to start being a bit more pointer-owner conscious | Chris Robinson | 2023-12-26 | 1 | -2/+2 |
| | |||||
* | Mark constructors noexcept as needed | Chris Robinson | 2023-12-15 | 1 | -3/+9 |
| | |||||
* | Catch a potential exception to free memory | Chris Robinson | 2023-12-15 | 1 | -3/+13 |
| | |||||
* | Remove unnecessary macro parameter lists | Chris Robinson | 2023-12-15 | 1 | -1/+1 |
| | |||||
* | Refactor FlexArray | Chris Robinson | 2023-12-10 | 1 | -0/+113 |
This avoids using an array of 1 as a flexible array member, and instead uses a span to reference the memory after itself. |