From c1279768a77d093e1747f4954c9c0a959feefdf0 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Wed, 8 Dec 2021 00:31:20 -0500 Subject: Cleanup: Clang-Tidy modernize-redundant-void-arg --- source/blender/blenlib/intern/mesh_intersect.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/intern/mesh_intersect.cc') diff --git a/source/blender/blenlib/intern/mesh_intersect.cc b/source/blender/blenlib/intern/mesh_intersect.cc index a09276a1abb..1af4dfb029d 100644 --- a/source/blender/blenlib/intern/mesh_intersect.cc +++ b/source/blender/blenlib/intern/mesh_intersect.cc @@ -3195,7 +3195,7 @@ struct PerfCounts { static PerfCounts *perfdata = nullptr; -static void perfdata_init(void) +static void perfdata_init() { perfdata = new PerfCounts; @@ -3247,7 +3247,7 @@ static void doperfmax(int maxnum, int val) perfdata->max[maxnum] = max_ii(perfdata->max[maxnum], val); } -static void dump_perfdata(void) +static void dump_perfdata() { std::cout << "\nPERFDATA\n"; for (int i : perfdata->count.index_range()) { -- cgit v1.2.3