mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 06:58:08 -05:00
Sources: Run clang-format on everything.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user