diff options
Diffstat (limited to 'plugins/NewStory/src/quicklist.h')
-rw-r--r-- | plugins/NewStory/src/quicklist.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/NewStory/src/quicklist.h b/plugins/NewStory/src/quicklist.h index ec4471f30c..3c5b44a78f 100644 --- a/plugins/NewStory/src/quicklist.h +++ b/plugins/NewStory/src/quicklist.h @@ -5,17 +5,17 @@ private: struct Item { T data; - Item *prev, *next; + Item* prev, * next; }; struct CacheItem { CacheItem() : item(0), no(0) {} - Item *item; + Item* item; int no; }; - Item *head, *tail; + Item* head, * tail; int cacheSize, cacheStep, cacheUsed; - CacheItem *cache; + CacheItem* cache; CacheItem last; public: |