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