summaryrefslogtreecommitdiffstats
path: root/core/math/bsp_tree.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-02-05 15:43:01 +0100
committerGitHub <noreply@github.com>2020-02-05 15:43:01 +0100
commit7ada59efb79f64882305c26c3a155385e5dcc05c (patch)
tree55db440c5a85ee333fd18236b3fe897a19fed554 /core/math/bsp_tree.cpp
parent9591ca3fe58298ef01ab12f1e59e91399a7ce2d4 (diff)
parent677604685dd2292f44fedb1b9a5b08b22137219a (diff)
downloadredot-engine-7ada59efb79f64882305c26c3a155385e5dcc05c.tar.gz
Merge pull request #33391 from madmiraal/cleanup-error_macros
Clean up error_macros.h
Diffstat (limited to 'core/math/bsp_tree.cpp')
-rw-r--r--core/math/bsp_tree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/bsp_tree.cpp b/core/math/bsp_tree.cpp
index f155d626d7..7ad907db97 100644
--- a/core/math/bsp_tree.cpp
+++ b/core/math/bsp_tree.cpp
@@ -341,7 +341,7 @@ static int _bsp_create_node(const Face3 *p_faces, const Vector<int> &p_indices,
ERR_FAIL_COND_V(p_nodes.size() == BSP_Tree::MAX_NODES, -1);
// should not reach here
- ERR_FAIL_COND_V(p_indices.size() == 0, -1)
+ ERR_FAIL_COND_V(p_indices.size() == 0, -1);
int ic = p_indices.size();
const int *indices = p_indices.ptr();