From 319a8a2f04aa3dec1eb41f9aa29690bf68bdcfbd Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 3 Oct 2012 14:51:45 +0200 Subject: ICE-4824 - Fixed VC6 style loops --- cpp/src/Slice/Preprocessor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/Slice/Preprocessor.cpp') diff --git a/cpp/src/Slice/Preprocessor.cpp b/cpp/src/Slice/Preprocessor.cpp index 7c4c60f545f..bb1b3c35c94 100644 --- a/cpp/src/Slice/Preprocessor.cpp +++ b/cpp/src/Slice/Preprocessor.cpp @@ -352,8 +352,8 @@ Slice::Preprocessor::printMakefileDependencies(Language lang, const vector fullIncludePaths; - vector::const_iterator p; - for(p = includePaths.begin(); p != includePaths.end(); ++p) + + for(vector::const_iterator p = includePaths.begin(); p != includePaths.end(); ++p) { fullIncludePaths.push_back(fullPath(*p)); } -- cgit v1.2.3