mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue