Removed workaround for compiler bug 3896, which is now fixed.

This commit is contained in:
Don Clugston 2010-06-08 19:35:10 +00:00
parent bdc1516342
commit 07b8f99d2f

View file

@ -79,8 +79,7 @@ public:
struct BigUint {
private:
invariant() {
// @@@BUG@@@ Compiler bug 3986:
//assert( data.length == 1 || data[$-1] != 0 );
assert( data.length == 1 || data[$-1] != 0 );
}
BigDigit [] data = ZERO;
this(BigDigit [] x) {