mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 09:55:45 +00:00
Sources: Run clang-format on everything.
This commit is contained in:
parent
4298e7ef01
commit
628ed4376a
386 changed files with 19560 additions and 18080 deletions
|
@ -16,8 +16,10 @@ namespace FileSys {
|
|||
|
||||
class FileBackend : NonCopyable {
|
||||
public:
|
||||
FileBackend() { }
|
||||
virtual ~FileBackend() { }
|
||||
FileBackend() {
|
||||
}
|
||||
virtual ~FileBackend() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Open the file
|
||||
|
@ -42,7 +44,8 @@ public:
|
|||
* @param buffer Buffer to read data from
|
||||
* @return Number of bytes written, or error code
|
||||
*/
|
||||
virtual ResultVal<size_t> Write(u64 offset, size_t length, bool flush, const u8* buffer) const = 0;
|
||||
virtual ResultVal<size_t> Write(u64 offset, size_t length, bool flush,
|
||||
const u8* buffer) const = 0;
|
||||
|
||||
/**
|
||||
* Get the size of the file in bytes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue