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>2011-11-11 17:09:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-11 17:09:14 +0400
commite84c0980a3afb89301f8512acee64e525db3a49d (patch)
tree8700c1b43e1887ad8916c623b1f5066bc6b6f17f /intern/container
parent094c9799f9926ae37515a1fe0380403ce3298a77 (diff)
correct indentation and some whitespace edits (no functional changes)
Diffstat (limited to 'intern/container')
-rw-r--r--intern/container/CTR_UHeap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/container/CTR_UHeap.h b/intern/container/CTR_UHeap.h
index e1cd2755263..11813c48331 100644
--- a/intern/container/CTR_UHeap.h
+++ b/intern/container/CTR_UHeap.h
@@ -229,13 +229,13 @@ private:
Parent(
unsigned int i
) {
- return (i-1) >> 1;
+ return (i-1) >> 1;
}
int
Left(
int i
) {
- return (i<<1)+1;
+ return (i<<1)+1;
}
int