diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-26 18:17:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 18:17:03 +0200 |
commit | 835da447dabb552a5d558b40d2df3c3c426f3498 (patch) | |
tree | 7728150cdcebaa93d21ef92a7818717280ddfea9 /platform/android/file_access_filesystem_jandroid.h | |
parent | b5222c07846b4742425a001121d998fe92050c20 (diff) | |
parent | 9679c67904b4714e3f3166fbc7174347f1038bc4 (diff) |
Merge pull request #63481 from m4gr3d/fix_remaining_scoped_storage_regressions_main
Address remaining scoped storage regressions
Diffstat (limited to 'platform/android/file_access_filesystem_jandroid.h')
-rw-r--r-- | platform/android/file_access_filesystem_jandroid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/android/file_access_filesystem_jandroid.h b/platform/android/file_access_filesystem_jandroid.h index 18d5df1628..7deb8de37b 100644 --- a/platform/android/file_access_filesystem_jandroid.h +++ b/platform/android/file_access_filesystem_jandroid.h @@ -74,6 +74,7 @@ public: virtual bool eof_reached() const override; ///< reading passed EOF virtual uint8_t get_8() const override; ///< get a byte + virtual String get_line() const override; ///< get a line virtual uint64_t get_buffer(uint8_t *p_dst, uint64_t p_length) const override; virtual Error get_error() const override; ///< get last error |