diff options
author | Kevin Smith <git@kismith.co.uk> | 2018-04-28 12:06:12 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2018-04-28 12:06:12 (GMT) |
commit | 522dfe5cd1390181ec8fb3f5fa3c8f665af3f806 (patch) | |
tree | 7ac3eac2a310c7ade0f9b8a17f2fa8710bbb6151 /Swiften/MIX | |
parent | 1b66a33c5fdacca2200e367c647b9a40768c569b (diff) | |
download | swift-522dfe5cd1390181ec8fb3f5fa3c8f665af3f806.zip swift-522dfe5cd1390181ec8fb3f5fa3c8f665af3f806.tar.bz2 |
Fix compiler warnings for Swiften
Test-Information:
./scons allow_warnings=0 Swiften now builds on latest macOS
Change-Id: Ic2095d5d112093d021f7f4695fbce73f315377cf
Diffstat (limited to 'Swiften/MIX')
-rw-r--r-- | Swiften/MIX/MIXImpl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Swiften/MIX/MIXImpl.h b/Swiften/MIX/MIXImpl.h index 58b33f4..4da7a62 100644 --- a/Swiften/MIX/MIXImpl.h +++ b/Swiften/MIX/MIXImpl.h @@ -1,4 +1,10 @@ /* + * Copyright (c) 2018 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + + /* * Copyright (c) 2017 Tarun Gupta * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. @@ -18,7 +24,7 @@ namespace Swift { public: MIXImpl(const JID& ownJID, const JID& channelJID, IQRouter* iqRouter); - virtual ~MIXImpl(); + virtual ~MIXImpl() override; /** * Returns the (bare) JID of the user. |