[LINT] Fixed lint issues after clang-format update

This commit is contained in:
Gliniak
2024-06-13 20:56:56 +02:00
parent ce990e2828
commit ec267c348a
13 changed files with 21 additions and 28 deletions

View File

@@ -23,7 +23,7 @@ DiscZarchiveDevice::DiscZarchiveDevice(const std::string_view mount_path,
const std::filesystem::path& host_path)
: Device(mount_path), name_("GDFX"), host_path_(host_path), reader_() {}
DiscZarchiveDevice::~DiscZarchiveDevice(){};
DiscZarchiveDevice::~DiscZarchiveDevice() {};
bool DiscZarchiveDevice::Initialize() {
reader_ =

View File

@@ -80,7 +80,7 @@ class XContentContainerDevice : public Device {
// multiple file.
virtual Result LoadHostFiles(FILE* header_file) = 0;
// Initialize any container specific fields.
virtual void SetupContainer(){};
virtual void SetupContainer() {};
Entry* ResolvePath(const std::string_view path);
void CloseFiles();