We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d5350c commit b8d41dbCopy full SHA for b8d41db
src/ystdlib/io_interface/ReaderInterface.hpp
@@ -1,6 +1,8 @@
1
#ifndef YSTDLIB_IO_INTERFACE_READERINTERFACE_HPP
2
#define YSTDLIB_IO_INTERFACE_READERINTERFACE_HPP
3
4
+// TODO: https://github.com/y-scope/ystdlib-cpp/issues/50
5
+// NOLINTNEXTLINE(misc-include-cleaner)
6
#include <sys/types.h>
7
8
#include <cstddef>
@@ -76,6 +78,8 @@ class ReaderInterface {
76
78
* Seeks from the current position to the next position by the given offset amount.
77
79
* @param offset
80
*/
81
+ // TODO: https://github.com/y-scope/ystdlib-cpp/issues/50
82
+ // NOLINTNEXTLINE(misc-include-cleaner)
83
[[nodiscard]] virtual auto seek_from_current(off_t offset) -> ErrorCode = 0;
84
85
/**
0 commit comments