summaryrefslogtreecommitdiffstats
path: root/core/math/vector3i.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-06-13 11:58:24 +0200
committerGitHub <noreply@github.com>2021-06-13 11:58:24 +0200
commit600b4c9c7b11622e4eb5ed1e5fd70b3d3f66170e (patch)
tree1b246c4e0efba31a91fbfafa15380f99c45708f0 /core/math/vector3i.cpp
parentf4ab76444fc166c592b9b11cb9bd51f3b51a2e77 (diff)
parent554c776e08c9ee35fa9e2677e02f4005c11ddbc0 (diff)
downloadredot-engine-600b4c9c7b11622e4eb5ed1e5fd70b3d3f66170e.tar.gz
Merge pull request #34668 from aaronfranke/to-string
[Core] Reformat structure string operators
Diffstat (limited to 'core/math/vector3i.cpp')
-rw-r--r--core/math/vector3i.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/vector3i.cpp b/core/math/vector3i.cpp
index a82db7f7fc..2de1e4e331 100644
--- a/core/math/vector3i.cpp
+++ b/core/math/vector3i.cpp
@@ -56,5 +56,5 @@ Vector3i Vector3i::clamp(const Vector3i &p_min, const Vector3i &p_max) const {
}
Vector3i::operator String() const {
- return (itos(x) + ", " + itos(y) + ", " + itos(z));
+ return "(" + itos(x) + ", " + itos(y) + ", " + itos(z) + ")";
}