diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-06-22 09:03:35 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-06-22 09:03:54 +0200 |
commit | ad8584f5d737bc681f363c6612c28d4d3525b836 (patch) | |
tree | 45fc0e53f50f9b82bb79e331bf628b89669e3558 /tools/Config.cpp | |
parent | 50ea3a50b5efc303f30bb91fabd1684476d8bbd1 (diff) |
tools: initializer for base class XMLConfiguration is redundant, remove it
Also run the clang static analyzer on net/ by excluding test/, and not
explicitly listing all non-test directories.
Change-Id: Iac203f1cf9161da1c51501de8b0c3cc9dc6e2027
Diffstat (limited to 'tools/Config.cpp')
-rw-r--r-- | tools/Config.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Config.cpp b/tools/Config.cpp index 1692453da..54b95d69c 100644 --- a/tools/Config.cpp +++ b/tools/Config.cpp @@ -36,8 +36,7 @@ using Poco::Util::XMLConfiguration; class LoolConfig final: public XMLConfiguration { public: - LoolConfig() : - XMLConfiguration() + LoolConfig() {} }; |