diff --git a/lib/int3.h b/lib/int3.h index 62a3c9402..73bda7d76 100644 --- a/lib/int3.h +++ b/lib/int3.h @@ -161,10 +161,10 @@ public: std::string toString() const { //Performance is important here - std::string result = "{" + + std::string result = "(" + std::to_string(x) + " " + std::to_string(y) + " " + - std::to_string(z) + "}"; + std::to_string(z) + ")"; return result; }