mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 10:11:41 -05:00
fixed build for clang, 0.9.35 dev version
This commit is contained in:
parent
4bb906b9f8
commit
a69a5c7252
1 changed files with 3 additions and 3 deletions
|
@ -88,7 +88,7 @@ public:
|
|||
|
||||
private:
|
||||
IteratorImpl impl_;
|
||||
friend class Self;
|
||||
friend class OrderedSet<T>;
|
||||
|
||||
};
|
||||
friend class iterator;
|
||||
|
@ -118,11 +118,11 @@ public:
|
|||
|
||||
friend class iterator;
|
||||
inline bool operator==(const iterator &other) const { return impl_ == other.impl_; }
|
||||
inline bool operator!=(const iterator &o) const { return impl_ != other.impl_; }
|
||||
inline bool operator!=(const iterator &other) const { return impl_ != other.impl_; }
|
||||
|
||||
private:
|
||||
ConstIteratorImpl impl_;
|
||||
friend class Self;
|
||||
friend class OrderedSet<T>;
|
||||
|
||||
};
|
||||
friend class const_iterator;
|
||||
|
|
Loading…
Add table
Reference in a new issue