Style fixes
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
eda1a29427
commit
a618f2b98b
|
@ -27,5 +27,4 @@ using f64 = double;
|
||||||
#define nullable
|
#define nullable
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#endif // ARBUTILS_DEFINES_HPP
|
#endif // ARBUTILS_DEFINES_HPP
|
||||||
|
|
|
@ -34,7 +34,8 @@ namespace ArbUt {
|
||||||
/// @brief Initialises a UniquePtrList from a raw pointer range.
|
/// @brief Initialises a UniquePtrList from a raw pointer range.
|
||||||
/// @param begin The raw pointer to the start of the list.
|
/// @param begin The raw pointer to the start of the list.
|
||||||
/// @param end The raw pointer to the end 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);
|
EnsureAllNotNull(_vector);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue