Further fixes for new convenience functions.
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
b7c9944784
commit
73b2270fca
|
@ -154,7 +154,8 @@ namespace ArbUt {
|
|||
/// @return A std::vector representation of the current list.
|
||||
std::vector<ValueT>& GetStdList() noexcept { return _vector; }
|
||||
|
||||
inline List<ValueT>* GetListPointer() const { return this; }
|
||||
inline const List<ValueT>* GetListPointer() const { return this; }
|
||||
inline List<ValueT>* GetListPointer() { return this; }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -145,7 +145,8 @@ namespace ArbUt {
|
|||
/// @return A std::vector representation of the current list.
|
||||
std::vector<ValueT*>& GetStdList() noexcept { return _vector; }
|
||||
|
||||
inline OptionalUniquePtrList<ValueT>* GetListPointer() const { return this; }
|
||||
inline const OptionalUniquePtrList<ValueT>* GetListPointer() const { return this; }
|
||||
inline OptionalUniquePtrList<ValueT>* GetListPointer() { return this; }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -154,7 +154,8 @@ namespace ArbUt {
|
|||
/// @return A std::vector representation of the current list.
|
||||
std::vector<ValueT*>& GetStdList() noexcept { return _vector; }
|
||||
|
||||
inline UniquePtrList<ValueT>* GetListPointer() const { return this; }
|
||||
inline const UniquePtrList<ValueT>* GetListPointer() const { return this; }
|
||||
inline UniquePtrList<ValueT>* GetListPointer() { return this; }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue