[ox/fs] Make some PassThroughFS functions noexcept

This commit is contained in:
2022-07-12 00:51:35 -05:00
parent 82dc1895d5
commit ca9bf786b1
2 changed files with 12 additions and 6 deletions

View File

@ -32,10 +32,10 @@ class PassThroughFS: public FileSystem {
public:
explicit PassThroughFS(const char *dirPath);
~PassThroughFS() override;
~PassThroughFS() noexcept override;
[[nodiscard]]
String basePath();
String basePath() const noexcept;
Error mkdir(const char *path, bool recursive = false) noexcept override;