BreakPoints: Convert typedefs into using aliases

This commit is contained in:
Lioncash 2017-01-11 07:59:43 -05:00
parent 50ee01754e
commit 93c5c0213f
1 changed files with 6 additions and 6 deletions

View File

@ -48,8 +48,8 @@ struct TWatch
class BreakPoints class BreakPoints
{ {
public: public:
typedef std::vector<TBreakPoint> TBreakPoints; using TBreakPoints = std::vector<TBreakPoint>;
typedef std::vector<std::string> TBreakPointsStr; using TBreakPointsStr = std::vector<std::string>;
const TBreakPoints& GetBreakPoints() { return m_BreakPoints; } const TBreakPoints& GetBreakPoints() { return m_BreakPoints; }
TBreakPointsStr GetStrings() const; TBreakPointsStr GetStrings() const;
@ -76,8 +76,8 @@ private:
class MemChecks class MemChecks
{ {
public: public:
typedef std::vector<TMemCheck> TMemChecks; using TMemChecks = std::vector<TMemCheck>;
typedef std::vector<std::string> TMemChecksStr; using TMemChecksStr = std::vector<std::string>;
TMemChecks m_MemChecks; TMemChecks m_MemChecks;
@ -98,8 +98,8 @@ public:
class Watches class Watches
{ {
public: public:
typedef std::vector<TWatch> TWatches; using TWatches = std::vector<TWatch>;
typedef std::vector<std::string> TWatchesStr; using TWatchesStr = std::vector<std::string>;
const TWatches& GetWatches() { return m_Watches; } const TWatches& GetWatches() { return m_Watches; }
TWatchesStr GetStrings() const; TWatchesStr GetStrings() const;