1
0
forked from fsfw/fsfw

getter function for capacity

This commit is contained in:
2020-07-06 23:08:31 +02:00
parent 8f6c3b50af
commit 2fccc4fef7
3 changed files with 10 additions and 5 deletions

View File

@ -73,4 +73,9 @@ inline size_t FIFOBase<T>::next(size_t current) {
return current;
}
template<typename T>
inline size_t FIFOBase<T>::getMaxCapacity() const {
return maxCapacity;
}
#endif