瀏覽代碼

Revert uninteded change

Ivan Savenko 2 年之前
父節點
當前提交
78ed2f154b
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lib/int3.h

+ 2 - 2
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;
 	}