Skip to content

Commit d351128

Browse files
committed
Change interface inheritance to pulbic.
1 parent ed60a76 commit d351128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/src/linking-tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ YSTDLIB_ERROR_HANDLING_MARK_AS_ERROR_CODE_ENUM(BinaryErrorCodeEnum);
4242
namespace {
4343
using ystdlib::io_interface::ErrorCode;
4444

45-
class FailureReader : ystdlib::io_interface::ReaderInterface {
45+
class FailureReader : public ystdlib::io_interface::ReaderInterface {
4646
public:
4747
[[nodiscard]] auto read(char* /*buf*/, size_t /*num_bytes_to_read*/, size_t& /*num_bytes_read*/)
4848
-> ErrorCode override {

0 commit comments

Comments
 (0)