diff options
Diffstat (limited to 'base/values.h')
-rw-r--r-- | base/values.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base/values.h b/base/values.h index 83e840d..e000508 100644 --- a/base/values.h +++ b/base/values.h @@ -315,7 +315,10 @@ class DictionaryValue : public Value { : private std::iterator<std::input_iterator_tag, const std::wstring> { public: explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; } - key_iterator operator++() { ++itr_; return *this; } + key_iterator operator++() { + ++itr_; + return *this; + } const std::wstring& operator*() { return itr_->first; } bool operator!=(const key_iterator& other) { return itr_ != other.itr_; } bool operator==(const key_iterator& other) { return itr_ == other.itr_; } |