mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-07 10:22:22 +00:00
BreakPoints: Make the memchecks class member private
There's no need to make this public.
This commit is contained in:
parent
93c5c0213f
commit
274ab8a262
@ -79,8 +79,6 @@ public:
|
|||||||
using TMemChecks = std::vector<TMemCheck>;
|
using TMemChecks = std::vector<TMemCheck>;
|
||||||
using TMemChecksStr = std::vector<std::string>;
|
using TMemChecksStr = std::vector<std::string>;
|
||||||
|
|
||||||
TMemChecks m_MemChecks;
|
|
||||||
|
|
||||||
const TMemChecks& GetMemChecks() { return m_MemChecks; }
|
const TMemChecks& GetMemChecks() { return m_MemChecks; }
|
||||||
TMemChecksStr GetStrings() const;
|
TMemChecksStr GetStrings() const;
|
||||||
void AddFromStrings(const TMemChecksStr& mcs);
|
void AddFromStrings(const TMemChecksStr& mcs);
|
||||||
@ -93,6 +91,8 @@ public:
|
|||||||
|
|
||||||
void Clear() { m_MemChecks.clear(); }
|
void Clear() { m_MemChecks.clear(); }
|
||||||
bool HasAny() const { return !m_MemChecks.empty(); }
|
bool HasAny() const { return !m_MemChecks.empty(); }
|
||||||
|
private:
|
||||||
|
TMemChecks m_MemChecks;
|
||||||
};
|
};
|
||||||
|
|
||||||
class Watches
|
class Watches
|
||||||
|
Loading…
x
Reference in New Issue
Block a user