diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-25 16:40:36 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-25 16:40:36 +0200 |
| commit | a386c56bac6b76a3db43dbb8ea2dca9538860788 (patch) | |
| tree | abd1754ae6c1f68b10c3e1716ae325f5eba50af0 /src | |
| parent | 5738b34c5d1ecc798f7d84d915c8b17e47d63f58 (diff) | |
Missing delete of some constructors.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/file_group.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/file_group.h b/src/lib/file_group.h index 0e26d64ec..a696343a0 100644 --- a/src/lib/file_group.h +++ b/src/lib/file_group.h @@ -39,6 +39,9 @@ public: explicit FileGroup (std::vector<boost::filesystem::path> const &); ~FileGroup (); + FileGroup (FileGroup const&) = delete; + FileGroup& operator= (FileGroup const&) = delete; + void set_paths (std::vector<boost::filesystem::path> const &); int64_t seek (int64_t, int) const; |
