Skip to content

Commit c7198d0

Browse files
committed
Marking seekpos as override
1 parent ff92321 commit c7198d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/tests/functional/http/client/response_stream_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ class basic_throws_buffer : public streams::details::streambuf_state_manager<Cha
268268
void set_buffer_size(size_t, std::ios_base::openmode) override {}
269269
size_t in_avail() const override { return 0; }
270270
pos_type getpos(std::ios_base::openmode) const override { return 0; }
271-
pos_type seekpos(pos_type, std::ios_base::openmode) { return 0; }
271+
pos_type seekpos(pos_type, std::ios_base::openmode) override { return 0; }
272272
pos_type seekoff(off_type, std::ios_base::seekdir, std::ios_base::openmode) override { return 0; }
273273
bool acquire(_Out_writes_(count) CharType*&, _In_ size_t&) override { return false; }
274274
void release(_Out_writes_(count) CharType *, _In_ size_t) override {}

0 commit comments

Comments
 (0)