1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-26 03:51:35 +01:00

Fixed compilation error on internals.h.

This commit is contained in:
Matias Fontanini
2013-10-16 14:45:03 -03:00
parent 08113b8f5f
commit 3337335df2

View File

@@ -57,7 +57,7 @@ public:
template<typename InputIterator>
byte_array(InputIterator start, InputIterator last) {
std::copy(start, end, data);
std::copy(start, last, data);
}
template<typename InputIterator>