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:
authorCampbell Barton <ideasman42@gmail.com>2021-01-04 05:10:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-04 09:38:11 +0300
commitfea1026bb8e2b5bfdf247491658c384805b51813 (patch)
tree5832a7cf88c0190a7f0f1933507dfaf8ca6965bb /source/blender/compositor/operations
parentdfbda59a66bf15827ed127e61c0cbb4de5563db6 (diff)
Cleanup: use 'pragma once'
Add explanations for cases the header-guard defines are still used.
Diffstat (limited to 'source/blender/compositor/operations')
-rw-r--r--source/blender/compositor/operations/COM_ColorExposureOperation.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_ColorExposureOperation.h b/source/blender/compositor/operations/COM_ColorExposureOperation.h
index a65d5acbe6c..2b5f20f28f0 100644
--- a/source/blender/compositor/operations/COM_ColorExposureOperation.h
+++ b/source/blender/compositor/operations/COM_ColorExposureOperation.h
@@ -16,8 +16,8 @@
* Copyright 2020, Blender Foundation.
*/
-#ifndef __COM_COLOREXPOSUREOPERATION_H__
-#define __COM_COLOREXPOSUREOPERATION_H__
+#pragma once
+
#include "COM_NodeOperation.h"
class ExposureOperation : public NodeOperation {
@@ -46,4 +46,3 @@ class ExposureOperation : public NodeOperation {
*/
void deinitExecution();
};
-#endif