Browse Source

* fixed some varset helpers broken in the previous commit

git-svn-id: trunk@7399 -
Jonas Maebe 18 years ago
parent
commit
ba67b8566b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      rtl/inc/genset.inc

+ 3 - 3
rtl/inc/genset.inc

@@ -134,7 +134,7 @@ function fpc_set_unset_byte(const source: fpc_normal_set; b : byte): fpc_normal_
  var
    src1: fpc_normal_set_long absolute set1;
    src2: fpc_normal_set_long absolute set2;
-   dest: fpc_normal_set absolute fpc_set_mul_sets;
+   dest: fpc_normal_set_long absolute fpc_set_mul_sets;
  {
    multiplies (takes common elements of) set1 and set2 result put in dest
  }
@@ -152,7 +152,7 @@ function fpc_set_unset_byte(const source: fpc_normal_set; b : byte): fpc_normal_
  var
    src1: fpc_normal_set_long absolute set1;
    src2: fpc_normal_set_long absolute set2;
-   dest: fpc_normal_set absolute fpc_set_sub_sets;
+   dest: fpc_normal_set_long absolute fpc_set_sub_sets;
  {
   computes the diff from set1 to set2 result in dest
  }
@@ -170,7 +170,7 @@ function fpc_set_unset_byte(const source: fpc_normal_set; b : byte): fpc_normal_
  var
    src1: fpc_normal_set_long absolute set1;
    src2: fpc_normal_set_long absolute set2;
-   dest: fpc_normal_set absolute fpc_set_symdif_sets;
+   dest: fpc_normal_set_long absolute fpc_set_symdif_sets;
  {
    computes the symetric diff from set1 to set2 result in dest
  }