Revert "Some instrumentation output..."

This reverts commit 2035806db7 that I
didn't want to push in the first place.
This commit is contained in:
John Ralls 2017-04-08 09:27:15 -07:00
parent 8ec92f2fe3
commit 5ff319205d

View File

@ -215,7 +215,6 @@ GncRational::round_to_numeric() const
--ll_bits;
}
}
std::cout << "Rounded with " << ll_bits << " bits.\n";
return new_v;
}
auto quot(m_den / m_num);
@ -237,7 +236,6 @@ GncRational::round_to_numeric() const
continue;
}
GncRational new_rational(num, den);
std::cout << "Divisor converted with " << ll_bits << "bits.\n";
return new_rational;
}
new_v = convert<RoundType::half_down>(m_den / divisor);
@ -247,7 +245,6 @@ GncRational::round_to_numeric() const
new_v = GncRational();
}
}
std::cout << "Divisor rounded with " << ll_bits << "bits.\n";
return new_v;
}