diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2012-05-26 08:09:50 +0200 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2012-05-26 08:09:50 +0200 |
| commit | 1efabea9b42ca914e65e1bebb952248db4e619bc (patch) | |
| tree | f6a27cc6e95c7df7a83d7df099204382ba155446 /Source/Core/Common | |
| parent | b79d8d9e10193cf0eb1381790f454a6ab14f6641 (diff) | |
Fix compilation errors with g++4.7
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/Src/ChunkFile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/ChunkFile.h b/Source/Core/Common/Src/ChunkFile.h index 01daec62c0..5935b7f53a 100644 --- a/Source/Core/Common/Src/ChunkFile.h +++ b/Source/Core/Common/Src/ChunkFile.h @@ -99,7 +99,7 @@ public: case MODE_MEASURE: case MODE_VERIFY: { - std::map<unsigned int, T>::iterator itr = x.begin(); + typename std::map<unsigned int, T>::iterator itr = x.begin(); while (number > 0) { Do(itr->first); |
