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>2012-02-27 14:35:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-27 14:35:39 +0400
commit47c373c7a970fa4bd26453a6e35a4b066f2b77e4 (patch)
tree43d916fb86bcf797afa834649706669694225fe8 /intern/container
parent120297734b4a01d93e5223e02f255b5aef01e281 (diff)
style cleanup (mostly whitespace)
Diffstat (limited to 'intern/container')
-rw-r--r--intern/container/CTR_List.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/intern/container/CTR_List.h b/intern/container/CTR_List.h
index 7eb8dce7241..404a08fddf2 100644
--- a/intern/container/CTR_List.h
+++ b/intern/container/CTR_List.h
@@ -37,42 +37,42 @@
class CTR_Link {
public:
CTR_Link(
- ) ;
+ );
CTR_Link(
CTR_Link *next,
CTR_Link *prev
- ) ;
+ );
CTR_Link *
getNext(
- ) const ;
+ ) const;
CTR_Link *
getPrev(
- ) const ;
+ ) const;
bool
isHead(
- ) const ;
+ ) const;
bool
isTail(
- ) const ;
+ ) const;
void
insertBefore(
CTR_Link *link
- ) ;
+ );
void
insertAfter(
CTR_Link *link
- ) ;
+ );
void
remove(
- ) ;
+ );
private:
CTR_Link *m_next;
@@ -83,25 +83,25 @@ class CTR_List {
public:
CTR_List(
- ) ;
+ );
CTR_Link *
getHead(
- ) const ;
+ ) const;
CTR_Link *
getTail(
- ) const ;
+ ) const;
void
addHead(
CTR_Link *link
- ) ;
+ );
void
addTail(
CTR_Link *link
- ) ;
+ );
private:
CTR_Link m_head;