mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-06 09:39:55 +00:00
Fix ambiguous comparison operator warning
This commit is contained in:
parent
26ee1246ae
commit
1ab5b481ff
@ -120,16 +120,11 @@ namespace rsx
|
||||
{}
|
||||
|
||||
public:
|
||||
inline bool operator == (const iterator& other)
|
||||
inline bool operator == (const iterator& other) const
|
||||
{
|
||||
return m_it == other.m_it;
|
||||
}
|
||||
|
||||
inline bool operator != (const iterator& other)
|
||||
{
|
||||
return m_it != other.m_it;
|
||||
}
|
||||
|
||||
inline auto* operator -> ()
|
||||
{
|
||||
ensure(m_current);
|
||||
|
Loading…
x
Reference in New Issue
Block a user