Index: src/SymTab/Autogen.cc
===================================================================
--- src/SymTab/Autogen.cc	(revision f30b2610e50e4c5af78040998488419804fc2066)
+++ src/SymTab/Autogen.cc	(revision e2203912dc6851873d11c3523fda6ab1175b95b5)
@@ -311,14 +311,14 @@
 	void FuncGenerator::generatePrototypes( std::list< FunctionDecl * > & newFuncs ) {
 		bool concurrent_type = isConcurrentType();
-		for ( const FuncData & data : data ) {
+		for ( const FuncData & d : data ) {
 			// generate a function (?{}, ?=?, ^?{}) based on the current FuncData.
-			FunctionType * ftype = data.genType( type );
+			FunctionType * ftype = d.genType( type );
 
 			// destructor for concurrent type must be mutex
-			if ( concurrent_type && CodeGen::isDestructor( data.fname ) ) {
+			if ( concurrent_type && CodeGen::isDestructor( d.fname ) ) {
 				ftype->parameters.front()->get_type()->set_mutex( true );
 			}
 
-			newFuncs.push_back( genFunc( data.fname, ftype, functionNesting ) );
+			newFuncs.push_back( genFunc( d.fname, ftype, functionNesting ) );
 		}
 	}
