summaryrefslogtreecommitdiffstats
path: root/modules/csg/csg.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-06-11 19:01:26 +0200
committerGitHub <noreply@github.com>2019-06-11 19:01:26 +0200
commit4043c8a8c980298e22ac0fa7a8955f19411f9148 (patch)
tree76829765e10fbf61140f640ff23b8e8ac9958b82 /modules/csg/csg.cpp
parent15425b450f6c531271be637aecd7fe3cb7d314ba (diff)
parent6d16f2f053248bff4b72e847904500f760babc35 (diff)
downloadredot-engine-4043c8a8c980298e22ac0fa7a8955f19411f9148.tar.gz
Merge pull request #29678 from akien-mga/err-macros-semicolon
Fix error macro calls not ending with semicolon
Diffstat (limited to 'modules/csg/csg.cpp')
-rw-r--r--modules/csg/csg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/csg/csg.cpp b/modules/csg/csg.cpp
index 3a61afa023..aa4d7d7d32 100644
--- a/modules/csg/csg.cpp
+++ b/modules/csg/csg.cpp
@@ -45,7 +45,7 @@ void CSGBrush::build_from_faces(const PoolVector<Vector3> &p_vertices, const Poo
int vc = p_vertices.size();
- ERR_FAIL_COND((vc % 3) != 0)
+ ERR_FAIL_COND((vc % 3) != 0);
PoolVector<Vector3>::Read rv = p_vertices.read();
int uvc = p_uvs.size();