removed empty line

This commit is contained in:
matthias@arch 2022-10-10 00:48:57 +02:00
parent 3675bf2140
commit b223c722fb

View File

@ -183,7 +183,7 @@ namespace gz {
inline std::string toString(const T& t) { inline std::string toString(const T& t) {
std::string s = "( "; std::string s = "( ";
s += toString(t.x) + ", "; s += toString(t.x) + ", ";
s += toString(t.z) + " )"; s += toString(t.y) + " )";
return s; return s;
} }