Explorar el Código

fixed compiler errors

Kolja Strohm hace 2 años
padre
commit
b3629693f0
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  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