Fix comment in queue::del_out (#553)

Seems it was copied from stack implementation, but queue increments out
not, decrements it.
This commit is contained in:
Ashley Roll 2022-06-11 00:11:12 +10:00 committed by GitHub
parent 8669afec86
commit aad52bb91c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,7 +197,7 @@ namespace etl
}
//*************************************************************************
/// Decrements (and wraps) the 'out' index value to record a queue deletion.
/// Increments (and wraps) the 'out' index value to record a queue deletion.
//*************************************************************************
void del_out()
{