Merge pull request #41 from bmcdorman/feature-arrow_operator

Added arrow operator to ValueIterator and ValueConstIterator
This commit is contained in:
Christopher Dunn 2014-09-14 08:08:15 -07:00
commit b4357fa224

View File

@ -1017,6 +1017,8 @@ public:
}
reference operator*() const { return deref(); }
pointer operator->() const { return &deref(); }
};
/** \brief Iterator for object and array value.
@ -1071,6 +1073,8 @@ public:
}
reference operator*() const { return deref(); }
pointer operator->() const { return &deref(); }
};
} // namespace Json