mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Beautify the source a bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
586bd03dc1
commit
760dfe6596
@ -61,16 +61,15 @@ public:
|
||||
typedef reverse_iterator<const_iterator> const_reverse_iterator;
|
||||
typedef reverse_iterator<iterator> reverse_iterator;
|
||||
|
||||
inline iterator begin() { return ValueList.begin(); }
|
||||
inline const_iterator begin() const { return ValueList.begin(); }
|
||||
inline iterator end () { return ValueList.end(); }
|
||||
inline const_iterator end () const { return ValueList.end(); }
|
||||
|
||||
inline iterator begin() { return ValueList.begin(); }
|
||||
inline const_iterator begin() const { return ValueList.begin(); }
|
||||
inline iterator end() { return ValueList.end(); }
|
||||
inline const_iterator end() const { return ValueList.end(); }
|
||||
|
||||
inline reverse_iterator rbegin() { return ValueList.rbegin(); }
|
||||
inline reverse_iterator rbegin() { return ValueList.rbegin(); }
|
||||
inline const_reverse_iterator rbegin() const { return ValueList.rbegin(); }
|
||||
inline reverse_iterator rend() { return ValueList.rend(); }
|
||||
inline const_reverse_iterator rend() const { return ValueList.rend(); }
|
||||
inline reverse_iterator rend () { return ValueList.rend(); }
|
||||
inline const_reverse_iterator rend () const { return ValueList.rend(); }
|
||||
|
||||
void delete_all() { // Delete all removes and deletes all elements
|
||||
while (!empty()) {
|
||||
|
Loading…
Reference in New Issue
Block a user