From e2d362757fb7e2e9d768906d5b4aefc5aaccdf67 Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Wed, 24 Mar 2021 15:30:36 +0100 Subject: Cleanup: Add override keyword. --- source/blender/compositor/operations/COM_ColorCorrectionOperation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/compositor/operations/COM_ColorCorrectionOperation.h') diff --git a/source/blender/compositor/operations/COM_ColorCorrectionOperation.h b/source/blender/compositor/operations/COM_ColorCorrectionOperation.h index 9a2e60c0d77..be0c9c198cf 100644 --- a/source/blender/compositor/operations/COM_ColorCorrectionOperation.h +++ b/source/blender/compositor/operations/COM_ColorCorrectionOperation.h @@ -39,17 +39,17 @@ class ColorCorrectionOperation : public NodeOperation { /** * The inner loop of this operation. */ - void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); + void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override; /** * Initialize the execution */ - void initExecution(); + void initExecution() override; /** * Deinitialize the execution */ - void deinitExecution(); + void deinitExecution() override; void setData(NodeColorCorrection *data) { -- cgit v1.2.3