diff options
| author | Sintendo <3380580+Sintendo@users.noreply.github.com> | 2025-01-05 12:22:12 +0100 |
|---|---|---|
| committer | Sintendo <3380580+Sintendo@users.noreply.github.com> | 2025-01-06 11:31:39 +0100 |
| commit | 532e25be125ff72e2474939e76e5c97a0405ce06 (patch) | |
| tree | 41a45f6a9880f3bad1583fbedc10a6a264b427c9 /Source/UnitTests/Core | |
| parent | 6b686be5f167d0b6ce7181d8d15a88bf9273e372 (diff) | |
Fix several minor warnings
Diffstat (limited to 'Source/UnitTests/Core')
| -rw-r--r-- | Source/UnitTests/Core/IOS/ES/FormatsTest.cpp | 2 | ||||
| -rw-r--r-- | Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/UnitTests/Core/IOS/ES/FormatsTest.cpp b/Source/UnitTests/Core/IOS/ES/FormatsTest.cpp index 60227ef51b..c2082ffbc8 100644 --- a/Source/UnitTests/Core/IOS/ES/FormatsTest.cpp +++ b/Source/UnitTests/Core/IOS/ES/FormatsTest.cpp @@ -44,7 +44,7 @@ TEST(TMDReader, Validity) class TMDReaderTest : public ::testing::Test { protected: - virtual void SetUp() = 0; + void SetUp() override = 0; // Common tests. void TestGeneralInfo(); diff --git a/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp b/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp index 513f86d4c9..5c84982b2a 100644 --- a/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp +++ b/Source/UnitTests/Core/IOS/FS/FileSystemTest.cpp @@ -41,7 +41,7 @@ protected: m_fs.reset(); File::DeleteDirRecursively(m_profile_path); } - void SetUp() + void SetUp() override { if (UserDirectoryCreationFailed()) { |
