Skip to content

Commit

Permalink
gcc doesnt like class::method inside the class
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram committed Feb 10, 2018
1 parent 46f73a3 commit a2ea43e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HighScore.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ struct HighScore
vector<float> timeStamps;
const vector<float>& GetOffsetVector() const;
const vector<int>& GetNoteRowVector() const;
vector<float> HighScore::GetCopyOfOffsetVector() const;
vector<int> HighScore::GetCopyOfNoteRowVector() const;
vector<float> GetCopyOfOffsetVector() const;
vector<int> GetCopyOfNoteRowVector() const;
string GetScoreKey() const;
int GetTopScore() const;
/**
Expand Down

0 comments on commit a2ea43e

Please sign in to comment.