got rid of warnings

This commit is contained in:
Dhanya Maliakal
2015-09-23 12:34:21 +02:00
parent 7c0430572b
commit 06b38e591c
4 changed files with 14 additions and 204 deletions

View File

@ -79,7 +79,7 @@ template<typename Element>
bool CircularFifo<Element>::push(Element*& item_)
{
int nextTail = increment(tail);
unsigned int nextTail = increment(tail);
if(nextTail != head)
{
array[tail] = item_;