From 8f2f0520dad742f20df773c3e98e0394f49ca914 Mon Sep 17 00:00:00 2001 From: Omar Emara Date: Thu, 13 Mar 2025 11:49:46 +0200 Subject: [PATCH] Cleanup: Unused declaration Removes a now unused declaration from the previous commit. --- source/blender/compositor/COM_conversion_operation.hh | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/blender/compositor/COM_conversion_operation.hh b/source/blender/compositor/COM_conversion_operation.hh index f96aa37911f..00afac8827e 100644 --- a/source/blender/compositor/COM_conversion_operation.hh +++ b/source/blender/compositor/COM_conversion_operation.hh @@ -40,9 +40,6 @@ class ConversionOperation : public SimpleOperation { /* Convert the input to the appropriate type and write the result to the output on the CPU. */ void execute_cpu(const Result &input, Result &output); - - /* Get the name of the shader the will be used for conversion. */ - const char *get_conversion_shader_name(); }; } // namespace blender::compositor