[ox/fs] Make some PassThroughFS functions noexcept
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user