libc: Clean up frigg:: comment

This commit is contained in:
Alexander van der Grinten 2018-10-19 13:01:09 +02:00
parent ee57fcef56
commit 1296b4a1f6

View file

@ -45,7 +45,7 @@ struct SoftDouble {
SoftDouble(bool negative, Mantissa mantissa, Exp exp)
: negative(negative), mantissa(mantissa), exp(exp) {
// mlibc::infoLogger.log() << "(" << (int)negative << ", " << (void *)mantissa
// << ", " << exp << ")" << frigg::EndLog();
// << ", " << exp << ")" << frg::end_log;
__ensure(mantissa < (Mantissa(1) << kMantissaBits));
__ensure((exp + kBias) >= 0);
__ensure((exp + kBias) < (Exp(1) << kExpBits));