Skip to content

Commit 66e05ba

Browse files
committed
Fixup
1 parent 5a5e65e commit 66e05ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

yasio/ibstream.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ class binary_reader_impl {
194194
{
195195
return read_blob(&out, static_cast<int>(sizeof(_Ty)), 1);
196196
}
197-
template <typename _Ty, size_t _N>
198-
size_t read_blob(_Ty (&out)[_N])
197+
template <typename _Ty, size_t _Count>
198+
size_t read_blob(_Ty (&out)[_Count])
199199
{
200-
return read_blob(out, static_cast<int>(sizeof(_Ty)), static_cast<int>(_N));
200+
return read_blob(out, static_cast<int>(sizeof(_Ty)), static_cast<int>(_Count));
201201
}
202202
size_t read_blob(void* out, int size, int count)
203203
{

0 commit comments

Comments
 (0)