浏览代码

* fix code formatting (no code changes)

git-svn-id: trunk@42378 -
svenbarth 6 年之前
父节点
当前提交
ab2fa724ec
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      compiler/pdecl.pas

+ 3 - 3
compiler/pdecl.pas

@@ -75,11 +75,11 @@ implementation
     var
        system_custom_attribute_def: tobjectdef = nil;
 
-    function is_system_custom_attribute_descendant(def:tdef): Boolean;
+    function is_system_custom_attribute_descendant(def:tdef):boolean;
     begin
       if system_custom_attribute_def=nil then
-        system_custom_attribute_def := tobjectdef(search_system_type('TCUSTOMATTRIBUTE').typedef);
-      Result := def_is_related(def, system_custom_attribute_def);
+        system_custom_attribute_def:=tobjectdef(search_system_type('TCUSTOMATTRIBUTE').typedef);
+      Result:=def_is_related(def,system_custom_attribute_def);
     end;
 
     function readconstant(const orgname:string;const filepos:tfileposinfo; out nodetype: tnodetype):tconstsym;