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/gpu/intern/gpu_shader.cc
parentd3a31311b9ba2108e292d05a91893396456b387c (diff)
Cleanup: clang-tidy modernize-redundant-void-arg
Diffstat (limited to 'source/blender/gpu/intern/gpu_shader.cc')
-rw-r--r--source/blender/gpu/intern/gpu_shader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_shader.cc b/source/blender/gpu/intern/gpu_shader.cc
index 1b6cb196534..3f5a639d2a0 100644
--- a/source/blender/gpu/intern/gpu_shader.cc
+++ b/source/blender/gpu/intern/gpu_shader.cc
@@ -339,7 +339,7 @@ void GPU_shader_bind(GPUShader *gpu_shader)
}
}
-void GPU_shader_unbind(void)
+void GPU_shader_unbind()
{
#ifndef NDEBUG
Context *ctx = Context::get();