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-10-07 02:02:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-07 02:02:50 +0400
commitf9ea19ac129deb9d3cb5ce9c7a4ea81b86e77680 (patch)
tree5232190e1f026d7e45916c10f5ca8b20063ffe9b /intern/container/CTR_List.h
parent1f90b4299982c3d6e7a8e839bf035b717b9a58d9 (diff)
spaces -> tabs (only whitespace changes)
Diffstat (limited to 'intern/container/CTR_List.h')
-rw-r--r--intern/container/CTR_List.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/intern/container/CTR_List.h b/intern/container/CTR_List.h
index 83252e05fae..79af9ea5abc 100644
--- a/intern/container/CTR_List.h
+++ b/intern/container/CTR_List.h
@@ -37,18 +37,18 @@
class CTR_Link {
public:
- CTR_Link(
+ CTR_Link(
) ;
- CTR_Link(
+ CTR_Link(
CTR_Link *next,
CTR_Link *prev
) ;
-
+
CTR_Link *
getNext(
) const ;
-
+
CTR_Link *
getPrev(
) const ;
@@ -76,14 +76,14 @@ public:
) ;
private:
- CTR_Link *m_next;
- CTR_Link *m_prev;
+ CTR_Link *m_next;
+ CTR_Link *m_prev;
};
class CTR_List {
public:
- CTR_List(
+ CTR_List(
) ;
CTR_Link *
@@ -103,10 +103,10 @@ public:
addTail(
CTR_Link *link
) ;
-
+
private:
- CTR_Link m_head;
- CTR_Link m_tail;
+ CTR_Link m_head;
+ CTR_Link m_tail;
};
#endif