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>2019-01-10 00:46:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-10 00:46:38 +0300
commit5681631109852d1037cddafd60f39552f8ba3bbf (patch)
tree95fa7f3db88c7e3f52c42c8adeefe62a756ea9e0 /source/blender/blenkernel/BKE_particle.h
parent69c8f0cc3b31301adc2a301f05e5bdb2c5916d08 (diff)
Cleanup: ensure header guards come first
Causes clang-format not to detect header guards, indenting all preprocessor lines in the header.
Diffstat (limited to 'source/blender/blenkernel/BKE_particle.h')
-rw-r--r--source/blender/blenkernel/BKE_particle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_particle.h b/source/blender/blenkernel/BKE_particle.h
index 5a1241f1de2..ee8612c3d7b 100644
--- a/source/blender/blenkernel/BKE_particle.h
+++ b/source/blender/blenkernel/BKE_particle.h
@@ -483,11 +483,11 @@ void BKE_particle_settings_eval_reset(
void BKE_particle_system_eval_init(struct Depsgraph *depsgraph,
struct Object *object);
-#endif
-
/* Draw Cache */
enum {
BKE_PARTICLE_BATCH_DIRTY_ALL = 0,
};
void BKE_particle_batch_cache_dirty_tag(struct ParticleSystem *psys, int mode);
void BKE_particle_batch_cache_free(struct ParticleSystem *psys);
+
+#endif /* __BKE_PARTICLE_H__ */