File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -439,8 +439,8 @@ namespace Concurrency { namespace streams {
439
439
440
440
size_t newPos = m_current_position + read_size;
441
441
442
- auto readBegin = begin (m_data) + m_current_position;
443
- auto readEnd = begin (m_data) + newPos;
442
+ auto readBegin = std:: begin (m_data) + m_current_position;
443
+ auto readEnd = std:: begin (m_data) + newPos;
444
444
445
445
#ifdef _WIN32
446
446
// Avoid warning C4996: Use checked iterators under SECURE_SCL
@@ -470,7 +470,7 @@ namespace Concurrency { namespace streams {
470
470
resize_for_write (newSize);
471
471
472
472
// Copy the data
473
- std::copy (ptr, ptr + count, begin (m_data) + m_current_position);
473
+ std::copy (ptr, ptr + count, std:: begin (m_data) + m_current_position);
474
474
475
475
// Update write head and satisfy pending reads if any
476
476
update_current_position (newSize);
You can’t perform that action at this time.
0 commit comments