summaryrefslogtreecommitdiff
path: root/unittests/mockDefs.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-08-16 16:29:06 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2025-08-16 16:29:06 +0100
commit0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496 (patch)
treea5869036a4b8109f7db71f8e3970d646622e5e8c /unittests/mockDefs.h
parentUpdate branch names from master to main (diff)
downloadnetfs-gitfs-0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496.tar.bz2
netfs-gitfs-0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496.tar.xz
netfs-gitfs-0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496.zip
Fix-up all the clang-tidy warnings
Diffstat (limited to 'unittests/mockDefs.h')
-rw-r--r--unittests/mockDefs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/unittests/mockDefs.h b/unittests/mockDefs.h
index 9efe187..9fa3ab7 100644
--- a/unittests/mockDefs.h
+++ b/unittests/mockDefs.h
@@ -1,6 +1,7 @@
#ifndef GITFS_TEST_MOCKDEFS_H
#define GITFS_TEST_MOCKDEFS_H
+#include <c++11Helpers.h>
#include <dryice.h>
#include <service.h>
#include <types.h>
@@ -19,10 +20,12 @@ namespace GitFS::Test {
const NetFS::ServicePrxPtr s;
};
+
class DLL_PUBLIC VolumeClient : public Client {
public:
VolumeClient();
- ~VolumeClient();
+ ~VolumeClient() override;
+ SPECIAL_MEMBERS_DELETE(VolumeClient);
const NetFS::ReqEnv env;
const NetFS::VolumePrxPtr v;