Marked AppLoader_ELF, AppLoader_NCCH, and Archive_RomFS virtual functions as "override".

This commit is contained in:
bunnei 2014-07-04 13:25:30 -04:00
parent 2d734bb6c5
commit 1099d83455
3 changed files with 13 additions and 13 deletions

View file

@ -16,13 +16,13 @@ namespace Loader {
class AppLoader_ELF final : public AppLoader {
public:
AppLoader_ELF(const std::string& filename);
~AppLoader_ELF();
~AppLoader_ELF() override;
/**
* Load the bootable file
* @return ResultStatus result of function
*/
ResultStatus Load();
ResultStatus Load() override;
private:
std::string filename;