diff options
| author | comex <comexk@gmail.com> | 2013-10-29 01:34:26 -0400 |
|---|---|---|
| committer | comex <comexk@gmail.com> | 2013-11-03 20:54:05 -0500 |
| commit | 21610c2e54302f8d4e5cae0705abaf10e63a8b44 (patch) | |
| tree | 088b275a0d2752a4992c28b0eefeb4489a2296f5 /Source/Core/DiscIO/Src/NANDContentLoader.cpp | |
| parent | c579637eafb9e9eb7f83711569254bd8da6d09d2 (diff) | |
Run code through clang-modernize -add-override to add 'override' decls.
Diffstat (limited to 'Source/Core/DiscIO/Src/NANDContentLoader.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/NANDContentLoader.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Source/Core/DiscIO/Src/NANDContentLoader.cpp b/Source/Core/DiscIO/Src/NANDContentLoader.cpp index 8dc6a9e3cb..e5b36c54d5 100644 --- a/Source/Core/DiscIO/Src/NANDContentLoader.cpp +++ b/Source/Core/DiscIO/Src/NANDContentLoader.cpp @@ -92,24 +92,24 @@ public: virtual ~CNANDContentLoader(); - bool IsValid() const { return m_Valid; } - void RemoveTitle(void) const; - u64 GetTitleID() const { return m_TitleID; } - u16 GetIosVersion() const { return m_IosVersion; } - u32 GetBootIndex() const { return m_BootIndex; } - size_t GetContentSize() const { return m_Content.size(); } - const SNANDContent* GetContentByIndex(int _Index) const; - const u8* GetTMDView() const { return m_TMDView; } - const u8* GetTMDHeader() const { return m_TMDHeader; } - u32 GetTIKSize() const { return m_TIKSize; } - const u8* GetTIK() const { return m_TIK; } - - const std::vector<SNANDContent>& GetContent() const { return m_Content; } - - u16 GetTitleVersion() const {return m_TitleVersion;} - u16 GetNumEntries() const {return m_numEntries;} - DiscIO::IVolume::ECountry GetCountry() const; - u8 GetCountryChar() const {return m_Country; } + bool IsValid() const override { return m_Valid; } + void RemoveTitle(void) const override; + u64 GetTitleID() const override { return m_TitleID; } + u16 GetIosVersion() const override { return m_IosVersion; } + u32 GetBootIndex() const override { return m_BootIndex; } + size_t GetContentSize() const override { return m_Content.size(); } + const SNANDContent* GetContentByIndex(int _Index) const override; + const u8* GetTMDView() const override { return m_TMDView; } + const u8* GetTMDHeader() const override { return m_TMDHeader; } + u32 GetTIKSize() const override { return m_TIKSize; } + const u8* GetTIK() const override { return m_TIK; } + + const std::vector<SNANDContent>& GetContent() const override { return m_Content; } + + u16 GetTitleVersion() const override {return m_TitleVersion;} + u16 GetNumEntries() const override {return m_numEntries;} + DiscIO::IVolume::ECountry GetCountry() const override; + u8 GetCountryChar() const override {return m_Country; } private: |
