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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-12-30 02:51:10 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-12-30 02:51:10 +0300
commit9d3264b4fd04ee4a6b52e0f97de3fcd3a81c1a86 (patch)
tree2166b322b4ecb8a49ce18e595024554465a79615 /source/blender/blenlib/intern
parentd3a31311b9ba2108e292d05a91893396456b387c (diff)
Cleanup: clang-tidy modernize-redundant-void-arg
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/mesh_intersect.cc4
-rw-r--r--source/blender/blenlib/intern/task_graph.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/mesh_intersect.cc b/source/blender/blenlib/intern/mesh_intersect.cc
index ab1db3f1fda..1f150137ba3 100644
--- a/source/blender/blenlib/intern/mesh_intersect.cc
+++ b/source/blender/blenlib/intern/mesh_intersect.cc
@@ -61,11 +61,11 @@
namespace blender::meshintersect {
# ifdef PERFDEBUG
-static void perfdata_init(void);
+static void perfdata_init();
static void incperfcount(int countnum);
static void bumpperfcount(int countnum, int amt);
static void doperfmax(int maxnum, int val);
-static void dump_perfdata(void);
+static void dump_perfdata();
# endif
/** For debugging, can disable threading in intersect code with this static constant. */
diff --git a/source/blender/blenlib/intern/task_graph.cc b/source/blender/blenlib/intern/task_graph.cc
index ff7d0ecb4c4..d84857caeea 100644
--- a/source/blender/blenlib/intern/task_graph.cc
+++ b/source/blender/blenlib/intern/task_graph.cc
@@ -109,7 +109,7 @@ struct TaskNode {
#endif
};
-TaskGraph *BLI_task_graph_create(void)
+TaskGraph *BLI_task_graph_create()
{
return new TaskGraph();
}