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-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/freestyle/intern/stroke/Modifiers.h
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/freestyle/intern/stroke/Modifiers.h')
-rw-r--r--source/blender/freestyle/intern/stroke/Modifiers.h44
1 files changed, 23 insertions, 21 deletions
diff --git a/source/blender/freestyle/intern/stroke/Modifiers.h b/source/blender/freestyle/intern/stroke/Modifiers.h
index 95b63362bac..ecdfd25c499 100644
--- a/source/blender/freestyle/intern/stroke/Modifiers.h
+++ b/source/blender/freestyle/intern/stroke/Modifiers.h
@@ -25,7 +25,7 @@
#include "TimeStamp.h"
#ifdef WITH_CXX_GUARDEDALLOC
-#include "MEM_guardedalloc.h"
+# include "MEM_guardedalloc.h"
#endif
namespace Freestyle {
@@ -39,35 +39,37 @@ namespace Freestyle {
/*! Base class for modifiers.
* Modifiers are used in the Operators in order to "mark" the processed Interface1D.
*/
-template<class Edge>
-struct EdgeModifier : public unary_function<Edge, void>
-{
- /*! Default construction */
- EdgeModifier() : unary_function<Edge, void>() {}
+template<class Edge> struct EdgeModifier : public unary_function<Edge, void> {
+ /*! Default construction */
+ EdgeModifier() : unary_function<Edge, void>()
+ {
+ }
- /*! the () operator */
- virtual void operator()(Edge& iEdge) {}
+ /*! the () operator */
+ virtual void operator()(Edge &iEdge)
+ {
+ }
#ifdef WITH_CXX_GUARDEDALLOC
- MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:EdgeModifier")
+ MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:EdgeModifier")
#endif
};
/*! Modifier that sets the time stamp of an Interface1D to the time stamp of the system. */
-template<class Edge>
-struct TimestampModifier : public EdgeModifier<Edge>
-{
- /*! Default constructor */
- TimestampModifier() : EdgeModifier<Edge>() {}
+template<class Edge> struct TimestampModifier : public EdgeModifier<Edge> {
+ /*! Default constructor */
+ TimestampModifier() : EdgeModifier<Edge>()
+ {
+ }
- /*! The () operator. */
- virtual void operator()(Edge& iEdge)
- {
- TimeStamp *timestamp = TimeStamp::instance();
- iEdge.setTimeStamp(timestamp->getTimeStamp());
- }
+ /*! The () operator. */
+ virtual void operator()(Edge &iEdge)
+ {
+ TimeStamp *timestamp = TimeStamp::instance();
+ iEdge.setTimeStamp(timestamp->getTimeStamp());
+ }
};
} /* namespace Freestyle */
-#endif // MODIFIERS_H
+#endif // MODIFIERS_H