Browse Source

fixed compiler errors

Kolja Strohm 2 years ago
parent
commit
b3629693f0
1 changed files with 0 additions and 2 deletions
  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