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>2022-01-10 02:24:48 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-01-10 02:24:48 +0300
commit17c7bac4052e1b5061d0cfdee5096d5e30837cc2 (patch)
treea7905c80fbc884daf651701835259be223e69e5a /source/blender/nodes/shader/nodes/node_shader_tex_white_noise.cc
parent6110f3aa1f4df2f477c88cbe6f57747f3ea2717a (diff)
Cleanup: redundent semicolons after function braces
Diffstat (limited to 'source/blender/nodes/shader/nodes/node_shader_tex_white_noise.cc')
-rw-r--r--source/blender/nodes/shader/nodes/node_shader_tex_white_noise.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/shader/nodes/node_shader_tex_white_noise.cc b/source/blender/nodes/shader/nodes/node_shader_tex_white_noise.cc
index 49bf622e2a5..3a5bc98896c 100644
--- a/source/blender/nodes/shader/nodes/node_shader_tex_white_noise.cc
+++ b/source/blender/nodes/shader/nodes/node_shader_tex_white_noise.cc
@@ -36,7 +36,7 @@ static void sh_node_tex_white_noise_declare(NodeDeclarationBuilder &b)
});
b.add_output<decl::Float>(N_("Value"));
b.add_output<decl::Color>(N_("Color"));
-};
+}
static void node_shader_buts_white_noise(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
{