From 9b35ab37aa996fde75e62214a8c8eff963e64838 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Mon, 22 Apr 2024 20:01:26 -0400 Subject: [PATCH] Remove debug print (#3389) --- src/Version.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Version.cpp b/src/Version.cpp index 56d01afb9..bbce61253 100644 --- a/src/Version.cpp +++ b/src/Version.cpp @@ -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); }