This commit is contained in:
Klaus Basan
2019-01-30 12:28:39 +01:00
committed by Mat Sutcliffe
parent d1822b6829
commit 17f67d6106
6 changed files with 12 additions and 12 deletions

View File

@@ -243,7 +243,7 @@ namespace BlackMisc
//! Removes an element at the end of the sequence.
void pop_back() { Q_ASSERT(!empty()); m_impl.pop_back(); }
//! Removes an element at the end of the sequence.
//! Removes an element at the front of the sequence.
void pop_front() { Q_ASSERT(!empty()); erase(begin()); }
//! Remove the element pointed to by the given iterator.