We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5e65e commit 66e05baCopy full SHA for 66e05ba
yasio/ibstream.hpp
@@ -194,10 +194,10 @@ class binary_reader_impl {
194
{
195
return read_blob(&out, static_cast<int>(sizeof(_Ty)), 1);
196
}
197
- template <typename _Ty, size_t _N>
198
- size_t read_blob(_Ty (&out)[_N])
+ template <typename _Ty, size_t _Count>
+ size_t read_blob(_Ty (&out)[_Count])
199
200
- return read_blob(out, static_cast<int>(sizeof(_Ty)), static_cast<int>(_N));
+ return read_blob(out, static_cast<int>(sizeof(_Ty)), static_cast<int>(_Count));
201
202
size_t read_blob(void* out, int size, int count)
203
0 commit comments