소스 검색

Extra spaces to make gcc happy

Hugh Sanderson 15 년 전
부모
커밋
f1528f1bdf
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      gencpp.ml

+ 2 - 2
gencpp.ml

@@ -1362,8 +1362,8 @@ and gen_expression ctx retval expression =
 			end
 		) var_list
 	| TFor (var_name, var_type, init, loop) ->
-		output ("for(::cpp::FastIterator_obj<" ^  (type_string var_type) ^
-             " > *__it = ::cpp::CreateFastIterator<"^(type_string var_type) ^ " >(");
+		output ("for(::cpp::FastIterator_obj< " ^  (type_string var_type) ^
+             " > *__it = ::cpp::CreateFastIterator< "^(type_string var_type) ^ " >(");
 		gen_expression ctx true init;
 		output (");  __it->hasNext(); )");
 		ctx.ctx_writer#begin_block;