diff options
author | Daniel Wilhelm <shieldwed@outlook.com> | 2017-01-09 10:54:11 +0100 |
---|---|---|
committer | Daniel Wilhelm <shieldwed@outlook.com> | 2017-01-09 10:54:11 +0100 |
commit | 6011596a2f247bde24095e985f6e2547e4b191ef (patch) | |
tree | 296003a2c8952f41b2998653ba02911ba2b83b0a /zen/fixed_list.h | |
parent | 8.7 (diff) | |
download | FreeFileSync-6011596a2f247bde24095e985f6e2547e4b191ef.tar.gz FreeFileSync-6011596a2f247bde24095e985f6e2547e4b191ef.tar.bz2 FreeFileSync-6011596a2f247bde24095e985f6e2547e4b191ef.zip |
8.8
Diffstat (limited to 'zen/fixed_list.h')
-rw-r--r-- | zen/fixed_list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zen/fixed_list.h b/zen/fixed_list.h index 81197eb4..27eb488c 100644 --- a/zen/fixed_list.h +++ b/zen/fixed_list.h @@ -139,8 +139,8 @@ public: void swap(FixedList& other) { std::swap(firstInsert_, other.firstInsert_); - std::swap(lastInsert_ , other.lastInsert_); - std::swap(sz_ , other.sz_); + std::swap(lastInsert_, other.lastInsert_); + std::swap(sz_, other.sz_); } private: @@ -194,7 +194,7 @@ public: }; using value_type = T; - using iterator = FixedIterator<typename std::vector<std::unique_ptr<T>>::iterator , T>; + using iterator = FixedIterator<typename std::vector<std::unique_ptr<T>>::iterator, T>; using const_iterator = FixedIterator<typename std::vector<std::unique_ptr<T>>::const_iterator, const T>; using reference = T&; using const_reference = const T&; |