mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 18:25:37 +08:00
Style
This commit is contained in:
committed by
Mat Sutcliffe
parent
d1822b6829
commit
17f67d6106
@@ -46,7 +46,7 @@ namespace BlackMisc
|
||||
class BLACKMISC_EXPORT IDatastoreObject : public ITimestampBased
|
||||
{
|
||||
// since we use different keys all the compares, set, get are in the derived class
|
||||
// in general we can say, it was a bad decisio to use different key types
|
||||
// in general we can say, it was a bad decision to use different key types
|
||||
// IndexDbIntegerKey = CPropertyIndex::GlobalIndexIDatastore for future usage
|
||||
|
||||
public:
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user