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:
authorSybren A. Stüvel <sybren@blender.org>2020-06-19 16:14:40 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-06-19 16:30:18 +0300
commit697b1736ef0549ab84b7e62d599bae85d510540d (patch)
treef13dd6b471191c126aebe564e6add34d2905d4a7 /source/blender/io/alembic/exporter/abc_writer_transform.h
parent1a448c66edf26ceb4fc4f0daad7375f0ae5f84cf (diff)
Cleanup: Alembic, replace `#ifndef` guards with `#pragma once`
No functional changes.
Diffstat (limited to 'source/blender/io/alembic/exporter/abc_writer_transform.h')
-rw-r--r--source/blender/io/alembic/exporter/abc_writer_transform.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/io/alembic/exporter/abc_writer_transform.h b/source/blender/io/alembic/exporter/abc_writer_transform.h
index af50929a963..fc997d77f4c 100644
--- a/source/blender/io/alembic/exporter/abc_writer_transform.h
+++ b/source/blender/io/alembic/exporter/abc_writer_transform.h
@@ -13,14 +13,12 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
+#pragma once
/** \file
* \ingroup balembic
*/
-#ifndef __ABC_WRITER_TRANSFORM_H__
-#define __ABC_WRITER_TRANSFORM_H__
-
#include "abc_writer_object.h"
#include <Alembic/AbcGeom/All.h>
@@ -64,5 +62,3 @@ class AbcTransformWriter : public AbcObjectWriter {
} // namespace alembic
} // namespace io
} // namespace blender
-
-#endif /* __ABC_WRITER_TRANSFORM_H__ */