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>2013-02-11 04:49:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-11 04:49:00 +0400
commit2005f7c6c0ee47b85bbcf5999225e86117290a65 (patch)
tree4157bd9de8d5606c1ced57c698394d78fec9b0d4 /intern/bsp
parent22dbb675c156a24880e3b1803a0f5abde53af4b8 (diff)
style cleanup: also some typos
Diffstat (limited to 'intern/bsp')
-rw-r--r--intern/bsp/intern/CSG_BooleanOps.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/intern/bsp/intern/CSG_BooleanOps.cpp b/intern/bsp/intern/CSG_BooleanOps.cpp
index 4f71e7992a1..f74dfc3c253 100644
--- a/intern/bsp/intern/CSG_BooleanOps.cpp
+++ b/intern/bsp/intern/CSG_BooleanOps.cpp
@@ -88,16 +88,16 @@ CSG_PerformBooleanOperation(
BoolOpType boolType;
- switch( op_type ) {
- case e_csg_union:
- boolType = BOP_UNION;
- break;
- case e_csg_difference:
- boolType = BOP_DIFFERENCE;
- break;
- default:
- boolType = BOP_INTERSECTION;
- break;
+ switch (op_type) {
+ case e_csg_union:
+ boolType = BOP_UNION;
+ break;
+ case e_csg_difference:
+ boolType = BOP_DIFFERENCE;
+ break;
+ default:
+ boolType = BOP_INTERSECTION;
+ break;
}
BoolOpState boolOpResult;