Added constructor from another HeaderList type

This commit is contained in:
accelerated
2018-12-05 20:04:10 -05:00
parent fe0c7e7dd5
commit 1c80af9b68
3 changed files with 37 additions and 7 deletions

View File

@@ -89,7 +89,7 @@ public:
* \param last An iterator to the end of data (not included)
*/
template <typename Iter>
Buffer(const Iter first, Iter last)
Buffer(const Iter first, const Iter last)
: Buffer(&*first, std::distance(first, last)) {
}