From 583006d0ef1a0b71c66dfab9c37cc4de27cf81d4 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 5 Jan 2021 17:04:02 +0100 Subject: Cleanup: clang tidy --- .../blender/compositor/operations/COM_ColorExposureOperation.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/operations/COM_ColorExposureOperation.cpp b/source/blender/compositor/operations/COM_ColorExposureOperation.cpp index 8a475432cc8..a11039852a1 100644 --- a/source/blender/compositor/operations/COM_ColorExposureOperation.cpp +++ b/source/blender/compositor/operations/COM_ColorExposureOperation.cpp @@ -18,12 +18,12 @@ #include "COM_ColorExposureOperation.h" -ExposureOperation::ExposureOperation() : NodeOperation() +ExposureOperation::ExposureOperation() { this->addInputSocket(COM_DT_COLOR); this->addInputSocket(COM_DT_VALUE); this->addOutputSocket(COM_DT_COLOR); - this->m_inputProgram = NULL; + this->m_inputProgram = nullptr; } void ExposureOperation::initExecution() @@ -52,6 +52,6 @@ void ExposureOperation::executePixelSampled(float output[4], void ExposureOperation::deinitExecution() { - this->m_inputProgram = NULL; - this->m_inputExposureProgram = NULL; + this->m_inputProgram = nullptr; + this->m_inputExposureProgram = nullptr; } -- cgit v1.2.3