mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01: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 TMemChecksStr = std::vector<std::string>;
|
||||
|
||||
TMemChecks m_MemChecks;
|
||||
|
||||
const TMemChecks& GetMemChecks() { return m_MemChecks; }
|
||||
TMemChecksStr GetStrings() const;
|
||||
void AddFromStrings(const TMemChecksStr& mcs);
|
||||
@ -93,6 +91,8 @@ public:
|
||||
|
||||
void Clear() { m_MemChecks.clear(); }
|
||||
bool HasAny() const { return !m_MemChecks.empty(); }
|
||||
private:
|
||||
TMemChecks m_MemChecks;
|
||||
};
|
||||
|
||||
class Watches
|
||||
|
Loading…
x
Reference in New Issue
Block a user