summaryrefslogtreecommitdiff
path: root/zen/fixed_list.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2017-01-09 10:54:11 +0100
committerDaniel Wilhelm <shieldwed@outlook.com>2017-01-09 10:54:11 +0100
commit6011596a2f247bde24095e985f6e2547e4b191ef (patch)
tree296003a2c8952f41b2998653ba02911ba2b83b0a /zen/fixed_list.h
parent8.7 (diff)
downloadFreeFileSync-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.h6
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&;
bgstack15