mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: ICC warning: type qualifier on return type is meaningless
This commit is contained in:
parent
64e8e02f54
commit
55bc7a678a
|
@ -141,7 +141,7 @@ public:
|
|||
|
||||
static const std::vector<MemCheck> GetMemChecks();
|
||||
static const std::vector<BreakPoint> GetBreakpoints();
|
||||
static const size_t GetNumMemchecks() { return memChecks_.size(); }
|
||||
static size_t GetNumMemchecks() { return memChecks_.size(); }
|
||||
|
||||
static void Update(u32 addr = 0);
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ struct BASEBLOCK
|
|||
{
|
||||
uptr m_pFnptr;
|
||||
|
||||
const __inline uptr GetFnptr() const { return m_pFnptr; }
|
||||
__inline uptr GetFnptr() const { return m_pFnptr; }
|
||||
void __inline SetFnptr( uptr ptr ) { m_pFnptr = ptr; }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue