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/function/nodes/node_fn_input_bool.cc
parent6110f3aa1f4df2f477c88cbe6f57747f3ea2717a (diff)
Cleanup: redundent semicolons after function braces
Diffstat (limited to 'source/blender/nodes/function/nodes/node_fn_input_bool.cc')
-rw-r--r--source/blender/nodes/function/nodes/node_fn_input_bool.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/function/nodes/node_fn_input_bool.cc b/source/blender/nodes/function/nodes/node_fn_input_bool.cc
index b6f7c802cc9..583570effd9 100644
--- a/source/blender/nodes/function/nodes/node_fn_input_bool.cc
+++ b/source/blender/nodes/function/nodes/node_fn_input_bool.cc
@@ -26,7 +26,7 @@ namespace blender::nodes::node_fn_input_bool_cc {
static void fn_node_input_bool_declare(NodeDeclarationBuilder &b)
{
b.add_output<decl::Bool>(N_("Boolean"));
-};
+}
static void fn_node_input_bool_layout(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
{