|
From: Lasse Kärkkäi. <tr...@us...> - 2009-11-01 01:30:04
|
Module: performous
Branch: master
Commit: a6c9f3bb541f0ccec3afdfc6b1b63088b64ba7d8
Author: Lasse Karkkainen <tro...@tr...>
Date: Sun Nov 1 02:55:14 2009 +0200
Remove unused typedefs
---
game/notes.hh | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/game/notes.hh b/game/notes.hh
index 59c3fc6..e5caf5a 100644
--- a/game/notes.hh
+++ b/game/notes.hh
@@ -52,9 +52,6 @@ struct Track {
NoteMap nm;
};
-// TODO: remove the following two types
-typedef std::vector<Track> TrackVector;
-typedef std::vector<Track const*> TrackVectorConstPtr;
// keep these ones
typedef std::map<std::string,Track> TrackMap;
typedef std::map<std::string,Track const*> TrackMapConstPtr; // this one really needed ? can't we save only the map key for comparison ?
|