mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
Merge pull request #206 from lioncash/semicolon
Remove extraneous semicolons
This commit is contained in:
commit
9010b54a90
8 changed files with 8 additions and 8 deletions
|
@ -33,5 +33,5 @@ namespace Symbols
|
|||
const std::string GetName(u32 _address);
|
||||
void Remove(u32 _address);
|
||||
void Clear();
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ class Event
|
|||
public:
|
||||
Event()
|
||||
: is_set(false)
|
||||
{};
|
||||
{}
|
||||
|
||||
void Set()
|
||||
{
|
||||
|
|
|
@ -106,4 +106,4 @@ void SetClockFrequencyMHz(int cpuMhz);
|
|||
int GetClockFrequencyMHz();
|
||||
extern int slicelength;
|
||||
|
||||
}; // namespace
|
||||
} // namespace
|
||||
|
|
|
@ -41,7 +41,7 @@ std::unique_ptr<File> Archive_RomFS::OpenFile(const Path& path, const Mode mode)
|
|||
bool Archive_RomFS::CreateDirectory(const Path& path) const {
|
||||
ERROR_LOG(FILESYS, "Attempted to create a directory in ROMFS.");
|
||||
return false;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Open a directory specified by its path
|
||||
|
|
|
@ -26,7 +26,7 @@ public:
|
|||
* Get the IdCode of the archive (e.g. RomFS, SaveData, etc.)
|
||||
* @return IdCode of the archive
|
||||
*/
|
||||
IdCode GetIdCode() const override { return IdCode::RomFS; };
|
||||
IdCode GetIdCode() const override { return IdCode::RomFS; }
|
||||
|
||||
/**
|
||||
* Open a file specified by its path, using the specified mode
|
||||
|
|
|
@ -30,7 +30,7 @@ public:
|
|||
* Get the IdCode of the archive (e.g. RomFS, SaveData, etc.)
|
||||
* @return IdCode of the archive
|
||||
*/
|
||||
IdCode GetIdCode() const override { return IdCode::SDMC; };
|
||||
IdCode GetIdCode() const override { return IdCode::SDMC; }
|
||||
|
||||
/**
|
||||
* Open a file specified by its path, using the specified mode
|
||||
|
|
|
@ -87,7 +87,7 @@ public:
|
|||
delete pool[handle - HANDLE_OFFSET];
|
||||
}
|
||||
return error;
|
||||
};
|
||||
}
|
||||
|
||||
bool IsValid(Handle handle);
|
||||
|
||||
|
|
|
@ -30,4 +30,4 @@ void RunLoopFor(int cycles);
|
|||
void RunLoopUntil(u64 global_cycles);
|
||||
void Shutdown();
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue