Style fixes
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2022-03-23 14:16:18 +01:00
parent eda1a29427
commit a618f2b98b
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
2 changed files with 7 additions and 7 deletions

View File

@ -27,5 +27,4 @@ using f64 = double;
#define nullable
#endif
#endif // ARBUTILS_DEFINES_HPP

View File

@ -34,7 +34,8 @@ namespace ArbUt {
/// @brief Initialises a UniquePtrList from a raw pointer range.
/// @param begin The raw pointer to the start of the list.
/// @param end The raw pointer to the end of the list.
inline UniquePtrList(ValueT* non_null const* non_null begin, ValueT* non_null const* non_null end) noexcept : _vector(begin, end) {
inline UniquePtrList(ValueT* non_null const* non_null begin, ValueT* non_null const* non_null end) noexcept
: _vector(begin, end) {
EnsureAllNotNull(_vector);
}