1
0
forked from fsfw/fsfw

fifo updates

This commit is contained in:
2020-09-01 12:53:53 +02:00
parent e949637271
commit b522b3c29c
4 changed files with 11 additions and 9 deletions

View File

@ -80,7 +80,7 @@ inline size_t FIFOBase<T>::getMaxCapacity() const {
template<typename T>
inline void FIFOBase<T>::setData(T *data) {
inline void FIFOBase<T>::setContainer(T *data) {
this->values = data;
}