aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/libshiboken/bindingmanager.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-08-31 10:09:39 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-08-31 10:06:13 +0000
commit4af51767cf8514b196ce9be76c6c31111ea5fe3f (patch)
treeff073094ee01e7f7972c30efd1a1fe32edfd2164 /sources/shiboken2/libshiboken/bindingmanager.cpp
parente95e2b74f109eaf167782cb916f76d72eaac9ed6 (diff)
libshiboken: Fix clang-tidy warnings about class definitions
- Add override - Use = default for trivial constructors/destructors - Delete copy and move constructors/assignment and move assignment operators where not needed - Use member initialization and remove constructors from simple structs - Use explicit where applicable Change-Id: Id293dd0008b05243e665347f12fd1dee3b1b70f7 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/shiboken2/libshiboken/bindingmanager.cpp')
-rw-r--r--sources/shiboken2/libshiboken/bindingmanager.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/sources/shiboken2/libshiboken/bindingmanager.cpp b/sources/shiboken2/libshiboken/bindingmanager.cpp
index 83ea6244f..4053b87f9 100644
--- a/sources/shiboken2/libshiboken/bindingmanager.cpp
+++ b/sources/shiboken2/libshiboken/bindingmanager.cpp
@@ -62,9 +62,7 @@ public:
Edges m_edges;
- Graph()
- {
- }
+ Graph() = default;
void addEdge(SbkObjectType* from, SbkObjectType* to)
{