Remove debug print (#3389)

This commit is contained in:
Dustin J. Mitchell 2024-04-22 20:01:26 -04:00 committed by GitHub
parent a9995808ec
commit 9b35ab37aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,7 +95,6 @@ bool Version::operator==(const Version &other) const {
////////////////////////////////////////////////////////////////////////////////
bool Version::operator!=(const Version &other) const {
std::cout << other;
return std::tie(major, minor, patch) !=
std::tie(other.major, other.minor, other.patch);
}