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:
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/nodes/COM_ColorExposureNode.h5
-rw-r--r--source/blender/compositor/operations/COM_ColorExposureOperation.h5
2 files changed, 3 insertions, 7 deletions
diff --git a/source/blender/compositor/nodes/COM_ColorExposureNode.h b/source/blender/compositor/nodes/COM_ColorExposureNode.h
index 18aefb7eae4..c17e798b979 100644
--- a/source/blender/compositor/nodes/COM_ColorExposureNode.h
+++ b/source/blender/compositor/nodes/COM_ColorExposureNode.h
@@ -16,8 +16,7 @@
* Copyright 2020, Blender Foundation.
*/
-#ifndef __COM_EXPOSURENODE_H__
-#define __COM_EXPOSURENODE_H__
+#pragma once
#include "COM_Node.h"
@@ -30,5 +29,3 @@ class ExposureNode : public Node {
ExposureNode(bNode *editorNode);
void convertToOperations(NodeConverter &converter, const CompositorContext &context) const;
};
-
-#endif
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