소스 검색

* cosmetics

florian 10 달 전
부모
커밋
5c94ccc4c2
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      compiler/ngenutil.pas

+ 3 - 2
compiler/ngenutil.pas

@@ -1231,11 +1231,12 @@ implementation
       unitinits.free;
     end;
 
+
   class function tnodeutils.has_init_list: boolean;
     var
       hp : tused_unit;
     begin
-      Result := True;
+      Result:=True;
 
       { Check current module first }
       if mf_init in current_module.moduleflags then
@@ -1251,7 +1252,7 @@ implementation
         end;
 
       { We reach this point, none of the used units have an initialisation list }
-      Result := False;
+      Result:=False;
     end;