Jelajahi Sumber

* fixed some comments after r16684

git-svn-id: trunk@16685 -
Jonas Maebe 14 tahun lalu
induk
melakukan
360d102ea4
1 mengubah file dengan 1 tambahan dan 5 penghapusan
  1. 1 5
      compiler/pdecl.pas

+ 1 - 5
compiler/pdecl.pas

@@ -335,13 +335,9 @@ implementation
 
 
       procedure finalize_objc_class_or_protocol_external_status(od: tobjectdef);
       procedure finalize_objc_class_or_protocol_external_status(od: tobjectdef);
         begin
         begin
-          { Objective-C classes can be external -> all messages inside are
-            external (defined at the class level instead of per method, so
-            that you cannot define some methods as external and some not)
-          }
           if  [oo_is_external,oo_is_forward] <= od.objectoptions then
           if  [oo_is_external,oo_is_forward] <= od.objectoptions then
             begin
             begin
-              { formal definition: x = objcclass; external; }
+              { formal definition: x = objcclass external; }
               exclude(od.objectoptions,oo_is_forward);
               exclude(od.objectoptions,oo_is_forward);
               include(od.objectoptions,oo_is_formal);
               include(od.objectoptions,oo_is_formal);
             end;
             end;