Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2020-08-28 19:04:26 +0300
committerRay Molenkamp <github@lazydodo.com>2020-08-28 19:04:26 +0300
commit285353c25289c83942af009ead88d2f74ff9f3d8 (patch)
tree4e94b24b833b970cf7297203040652fd7dbc7802 /source/blender/blenlib/tests
parent79e82dbc0574abe97f7316dc23441472594a3f57 (diff)
Cleanup: clang-format
Diffstat (limited to 'source/blender/blenlib/tests')
-rw-r--r--source/blender/blenlib/tests/BLI_mesh_intersect_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc b/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc
index f3890bcebb2..a9b916f6489 100644
--- a/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc
+++ b/source/blender/blenlib/tests/BLI_mesh_intersect_test.cc
@@ -157,7 +157,7 @@ static int find_edge_pos_in_tri(const Vert *v0, const Vert *v1, const Face *f)
return -1;
}
-#if DO_REGULAR_TESTS
+# if DO_REGULAR_TESTS
TEST(mesh_intersect, Mesh)
{
Vector<const Vert *> verts;
@@ -703,9 +703,9 @@ TEST(mesh_intersect, CubeCubeStep)
write_obj_mesh(out2, "test_cubecubestep_nary");
}
}
-#endif
+# endif
-#if DO_PERF_TESTS
+# if DO_PERF_TESTS
static void get_sphere_params(
int nrings, int nsegs, bool triangulate, int *r_num_verts, int *r_num_faces)
@@ -1068,7 +1068,7 @@ TEST(mesh_intersect_perf, SphereGrid)
spheregrid_test(64, 4, 0.1, false);
}
-#endif
+# endif
} // namespace blender::meshintersect::tests
#endif