mirror of
https://github.com/vgough/encfs.git
synced 2024-11-21 23:43:26 +01:00
Correct unused-parameter warnings
This commit is contained in:
parent
4e19edfd56
commit
92b209f7c0
@ -55,8 +55,6 @@ DirTraverse::DirTraverse(std::shared_ptr<DIR> _dirPtr, uint64_t _iv,
|
||||
std::shared_ptr<NameIO> _naming)
|
||||
: dir(std::move(_dirPtr)), iv(_iv), naming(std::move(_naming)) {}
|
||||
|
||||
DirTraverse::DirTraverse(const DirTraverse &src) = default;
|
||||
|
||||
DirTraverse &DirTraverse::operator=(const DirTraverse &src) = default;
|
||||
|
||||
DirTraverse::~DirTraverse() {
|
||||
|
@ -50,7 +50,6 @@ class DirTraverse {
|
||||
public:
|
||||
DirTraverse(std::shared_ptr<DIR> dirPtr, uint64_t iv,
|
||||
std::shared_ptr<NameIO> naming);
|
||||
DirTraverse(const DirTraverse &src);
|
||||
~DirTraverse();
|
||||
|
||||
DirTraverse &operator=(const DirTraverse &src);
|
||||
|
@ -36,10 +36,6 @@ Interface::Interface(std::string name_, int Current, int Revision, int Age)
|
||||
_revision(Revision),
|
||||
_age(Age) {}
|
||||
|
||||
Interface::Interface(const Interface &src)
|
||||
|
||||
= default;
|
||||
|
||||
Interface::Interface() : _current(0), _revision(0), _age(0) {}
|
||||
|
||||
Interface &Interface::operator=(const Interface &src) = default;
|
||||
|
@ -38,7 +38,6 @@ class Interface {
|
||||
*/
|
||||
Interface(const char *name, int Current, int Revision, int Age);
|
||||
Interface(std::string name, int Current, int Revision, int Age);
|
||||
Interface(const Interface &src);
|
||||
Interface();
|
||||
|
||||
// check if we implement the interface described by B.
|
||||
|
Loading…
Reference in New Issue
Block a user