cleaned all trailing white space from source files.
[sdk] / ecere / src / com / containers / CustomAVLTree.ec
index 328df01..a2538ae 100644 (file)
@@ -79,7 +79,7 @@ public:
 private:
 
    void Free()
-   {  
+   {
        if (left) left.Free();
        if (right) right.Free();
       delete this;
@@ -93,7 +93,7 @@ private:
       while(true)
       {
          // *** NEED COMPARISON OPERATOR SUPPORT HERE INVOKING OnCompare, AS WELL AS TYPE INFORMATION PASSED ***
-         int result = ((int (*)(void *, void *, void *))(void *)Tclass._vTbl[__ecereVMethodID_class_OnCompare])(Tclass, 
+         int result = ((int (*)(void *, void *, void *))(void *)Tclass._vTbl[__ecereVMethodID_class_OnCompare])(Tclass,
             ((Tclass.type == systemClass && !Tclass.byValueSystemClass) || Tclass.type == bitClass || Tclass.type == enumClass || Tclass.type == unitClass || Tclass.type == structClass) ? (((byte *)&(uint64)node.key) + __ENDIAN_PAD((Tclass.type == structClass) ? sizeof(void *) : Tclass.typeSize)) : (void *)node.key,
             ((Tclass.type == systemClass && !Tclass.byValueSystemClass) || Tclass.type == bitClass || Tclass.type == enumClass || Tclass.type == unitClass || Tclass.type == structClass) ? (((byte *)&(uint64)key) + __ENDIAN_PAD((Tclass.type == structClass) ? sizeof(void *) : Tclass.typeSize)) : (void *)key);
          if(!result)
@@ -152,7 +152,7 @@ private:
       while(this)
       {
          // *** NEED COMPARISON OPERATOR SUPPORT HERE INVOKING OnCompare, AS WELL AS TYPE INFORMATION PASSED ***
-         int result = ((int (*)(void *, void *, void *))(void *)Tclass._vTbl[__ecereVMethodID_class_OnCompare])(Tclass, 
+         int result = ((int (*)(void *, void *, void *))(void *)Tclass._vTbl[__ecereVMethodID_class_OnCompare])(Tclass,
             ((Tclass.type == systemClass && !Tclass.byValueSystemClass) || Tclass.type == bitClass || Tclass.type == enumClass || Tclass.type == unitClass) ? (((byte *)&(uint64)key) + __ENDIAN_PAD(Tclass.typeSize)) : (void *)key,
             ((Tclass.type == systemClass && !Tclass.byValueSystemClass) || Tclass.type == bitClass || Tclass.type == enumClass || Tclass.type == unitClass || Tclass.type == structClass) ? (((byte *)&(uint64)this.key) + __ENDIAN_PAD((Tclass.type == structClass) ? sizeof(void *) : Tclass.typeSize)) : (void *)this.key);
          if(result < 0)
@@ -257,7 +257,7 @@ private:
          return parent.Rebalance();
       else
          return null;
-   }      
+   }
 
    thisclass RemoveSwapRight()
    {
@@ -427,7 +427,7 @@ public:
          Class Tclass = class(BT).templateArgs[0].dataTypeClass;
          if(!Tclass)
          {
-            Tclass = class(BT).templateArgs[0].dataTypeClass = 
+            Tclass = class(BT).templateArgs[0].dataTypeClass =
                eSystem_FindClass(__thisModule.application, class(BT).templateArgs[0].dataTypeString);
          }
          if(root.Add(Tclass /*class(BT).templateArgs[0].dataTypeClass*/, node))