浏览代码

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;