Remove debug print (#3389)
This commit is contained in:
committed by
GitHub
parent
a9995808ec
commit
9b35ab37aa
@@ -95,7 +95,6 @@ bool Version::operator==(const Version &other) const {
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool Version::operator!=(const Version &other) const {
|
bool Version::operator!=(const Version &other) const {
|
||||||
std::cout << other;
|
|
||||||
return std::tie(major, minor, patch) !=
|
return std::tie(major, minor, patch) !=
|
||||||
std::tie(other.major, other.minor, other.patch);
|
std::tie(other.major, other.minor, other.patch);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user