diff options
author | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-05-20 18:07:27 +0200 |
---|---|---|
committer | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-09-01 12:39:32 +0200 |
commit | 205a10e0ae7bfff1bc6ebba481838e3ac856b6b8 (patch) | |
tree | 63d8027126d92402750460c4d55cb9d218509ed0 /drivers/unix/file_access_unix_pipe.h | |
parent | 61598c5c88d95b96811d386cb20d714c35f4c6d7 (diff) | |
download | redot-engine-205a10e0ae7bfff1bc6ebba481838e3ac856b6b8.tar.gz |
Reduce code duplication in FileAccess
Diffstat (limited to 'drivers/unix/file_access_unix_pipe.h')
-rw-r--r-- | drivers/unix/file_access_unix_pipe.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/unix/file_access_unix_pipe.h b/drivers/unix/file_access_unix_pipe.h index 8e7988791b..19acdb5a37 100644 --- a/drivers/unix/file_access_unix_pipe.h +++ b/drivers/unix/file_access_unix_pipe.h @@ -65,14 +65,12 @@ public: virtual bool eof_reached() const override { return false; } - virtual uint8_t get_8() const override; ///< get a byte virtual uint64_t get_buffer(uint8_t *p_dst, uint64_t p_length) const override; virtual Error get_error() const override; ///< get last error virtual Error resize(int64_t p_length) override { return ERR_UNAVAILABLE; } virtual void flush() override {} - virtual void store_8(uint8_t p_src) override; ///< store a byte virtual void store_buffer(const uint8_t *p_src, uint64_t p_length) override; ///< store an array of bytes virtual bool file_exists(const String &p_path) override { return false; } |