~ubuntu-branches/ubuntu/oneiric/gnat-gps/oneiric

« back to all changes in this revision

Viewing changes to codefix/src/codefix-merge_utils.ads

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-08-18 12:35:49 UTC
  • mfrom: (10.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20080818123549-dp25qi8lg9f0x14t
Tags: 4.3~2008.08.09ubuntu1
Add lpia to supported architectures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
--  Implement the main merge functions, and all merge tools used with strings.
22
22
 
23
23
with Ada.Unchecked_Deallocation;
24
 
with GNAT.OS_Lib;
 
24
with GNAT.Strings;
25
25
 
26
26
package Codefix.Merge_Utils is
27
27
 
181
181
     Ada.Unchecked_Deallocation (Merge_Array, Ptr_Merge_Array);
182
182
 
183
183
   type Mergable_String is record
184
 
      Str   : GNAT.OS_Lib.String_Access;
 
184
      Str   : GNAT.Strings.String_Access;
185
185
      Infos : Ptr_Merge_Array;
186
186
   end record;
187
187
 
218
218
   --  if any.
219
219
 
220
220
   procedure Delete_Char
221
 
     (This : in out GNAT.OS_Lib.String_Access; Position : Natural);
 
221
     (This : in out GNAT.Strings.String_Access; Position : Natural);
222
222
   procedure Delete_Info (This : in out Ptr_Merge_Array; Position : Natural);
223
223
 
224
224
   type Mask_Iterator is record