diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-04-08 20:08:00 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-04-08 20:08:00 +0100 |
commit | c09088f522dc6344978ceb2c131b977f0140eecd (patch) | |
tree | da3e523f35ebe7438308af57bb578fc000bbb240 | |
parent | Reformat with new clang-format (diff) | |
download | netfs-c09088f522dc6344978ceb2c131b977f0140eecd.tar.bz2 netfs-c09088f522dc6344978ceb2c131b977f0140eecd.tar.xz netfs-c09088f522dc6344978ceb2c131b977f0140eecd.zip |
Add missing override
-rw-r--r-- | netfs/unittests/testLib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netfs/unittests/testLib.cpp b/netfs/unittests/testLib.cpp index 7c41340..9ff3c5e 100644 --- a/netfs/unittests/testLib.cpp +++ b/netfs/unittests/testLib.cpp @@ -15,7 +15,7 @@ struct TestEntry { struct TestEntCache : public EntCache<TestEntry> { void - fillCache() const noexcept + fillCache() const noexcept override { idcache->insert(std::make_shared<TestEntry>(1, "user1")); idcache->insert(std::make_shared<TestEntry>(2, "user2")); |