mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 17:58:37 +12:00
Fix ambiguous comparison operator warning
This commit is contained in:
parent
26ee1246ae
commit
1ab5b481ff
1 changed files with 1 additions and 6 deletions
|
@ -120,16 +120,11 @@ namespace rsx
|
||||||
{}
|
{}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
inline bool operator == (const iterator& other)
|
inline bool operator == (const iterator& other) const
|
||||||
{
|
{
|
||||||
return m_it == other.m_it;
|
return m_it == other.m_it;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool operator != (const iterator& other)
|
|
||||||
{
|
|
||||||
return m_it != other.m_it;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline auto* operator -> ()
|
inline auto* operator -> ()
|
||||||
{
|
{
|
||||||
ensure(m_current);
|
ensure(m_current);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue