mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 18:21:42 -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:
|
private:
|
||||||
IteratorImpl impl_;
|
IteratorImpl impl_;
|
||||||
friend class Self;
|
friend class OrderedSet<T>;
|
||||||
|
|
||||||
};
|
};
|
||||||
friend class iterator;
|
friend class iterator;
|
||||||
|
@ -118,11 +118,11 @@ public:
|
||||||
|
|
||||||
friend class iterator;
|
friend class iterator;
|
||||||
inline bool operator==(const iterator &other) const { return impl_ == other.impl_; }
|
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:
|
private:
|
||||||
ConstIteratorImpl impl_;
|
ConstIteratorImpl impl_;
|
||||||
friend class Self;
|
friend class OrderedSet<T>;
|
||||||
|
|
||||||
};
|
};
|
||||||
friend class const_iterator;
|
friend class const_iterator;
|
||||||
|
|
Loading…
Add table
Reference in a new issue