mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 23:24:34 +00:00
Delete declared but not implemented functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242304 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -61,7 +61,6 @@ public:
|
|||||||
reference operator*() const { return Component; }
|
reference operator*() const { return Component; }
|
||||||
pointer operator->() const { return &Component; }
|
pointer operator->() const { return &Component; }
|
||||||
const_iterator &operator++(); // preincrement
|
const_iterator &operator++(); // preincrement
|
||||||
const_iterator &operator++(int); // postincrement
|
|
||||||
bool operator==(const const_iterator &RHS) const;
|
bool operator==(const const_iterator &RHS) const;
|
||||||
bool operator!=(const const_iterator &RHS) const { return !(*this == RHS); }
|
bool operator!=(const const_iterator &RHS) const { return !(*this == RHS); }
|
||||||
|
|
||||||
@ -87,7 +86,6 @@ public:
|
|||||||
reference operator*() const { return Component; }
|
reference operator*() const { return Component; }
|
||||||
pointer operator->() const { return &Component; }
|
pointer operator->() const { return &Component; }
|
||||||
reverse_iterator &operator++(); // preincrement
|
reverse_iterator &operator++(); // preincrement
|
||||||
reverse_iterator &operator++(int); // postincrement
|
|
||||||
bool operator==(const reverse_iterator &RHS) const;
|
bool operator==(const reverse_iterator &RHS) const;
|
||||||
bool operator!=(const reverse_iterator &RHS) const { return !(*this == RHS); }
|
bool operator!=(const reverse_iterator &RHS) const { return !(*this == RHS); }
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user