Remove global "using namespace std;" declarations, use "std::" prefixes on all std elements
Fix whitespace changes
This commit is contained in:
committed by
Martin Natano
parent
f0680a29fc
commit
0cba3579de
+3
-3
@@ -9,7 +9,7 @@
|
||||
|
||||
class Course;
|
||||
class Trail;
|
||||
typedef pair<Difficulty, StepsType> DifficultyAndStepsType;
|
||||
typedef std::pair<Difficulty, StepsType> DifficultyAndStepsType;
|
||||
|
||||
const int NUM_RANKING_LINES = 5;
|
||||
|
||||
@@ -40,7 +40,7 @@ protected:
|
||||
}
|
||||
|
||||
int colorIndex;
|
||||
vector<DifficultyAndStepsType> aTypes;
|
||||
std::vector<DifficultyAndStepsType> aTypes;
|
||||
|
||||
// RankingPageType_Category
|
||||
RankingCategory category;
|
||||
@@ -54,7 +54,7 @@ protected:
|
||||
|
||||
BitmapText m_textStepsType; // for category, course, all_steps
|
||||
|
||||
vector<PageToShow> m_vPagesToShow;
|
||||
std::vector<PageToShow> m_vPagesToShow;
|
||||
unsigned m_iNextPageToShow;
|
||||
|
||||
// Don't use the version in CommonMetrics because we may have multiple
|
||||
|
||||
Reference in New Issue
Block a user