Fix Clang failure.

[SVN r77262]
This commit is contained in:
John Maddock
2012-03-08 13:17:13 +00:00
parent c82710fee6
commit 78cfa00b07
+1 -1
View File
@@ -444,7 +444,7 @@ public:
typename base_type::limb_pointer p = this->limbs();
*p = static_cast<limb_type>(i);
p[1] = static_cast<limb_type>(i >> base_type::limb_bits);
resize(p[1] ? 2 : 1);
this->resize(p[1] ? 2 : 1);
this->sign(s);
return *this;
}