Selaa lähdekoodia

fixed compiler errors

Kolja Strohm 2 vuotta sitten
vanhempi
commit
b3629693f0
1 muutettua tiedostoa jossa 0 lisäystä ja 2 poistoa
  1. 0 2
      Either.h

+ 0 - 2
Either.h

@@ -18,14 +18,12 @@ namespace Framework
         {
             aValue = a;
             this->a = 1;
-            enshureAUnequalB( aValue );
         }
 
         Either( B b )
         {
             bValue = b;
             a = 0;
-            enshureAUnequalB( bValue );
         }
 
         bool isA() const