aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/derived.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2023-09-25 16:15:25 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2023-09-27 11:13:31 +0200
commitd88eba7e8f8f9951e48709a1503931025a592d6a (patch)
treeb3466d2f03e44b19cc7e1d2748ed1fb791235dfb /sources/shiboken6/tests/libsample/derived.cpp
parentf6d11df9409da11e084f57633025c2806735e8b7 (diff)
Fix some static analysis warnings in the shiboken tests
- else after return - Do not repeat return types - Use range-based for for std::map - Use constructor member initialization - Initialize variables - Use override instead of repeating virtual - Use noexcept for move special functions - Upper case integer literals - Various other small fixes Pick-to: 6.6 6.5 Change-Id: I06924c60fcd0d8bfcad9cc2cd6e79e72621cb766 Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'sources/shiboken6/tests/libsample/derived.cpp')
-rw-r--r--sources/shiboken6/tests/libsample/derived.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken6/tests/libsample/derived.cpp b/sources/shiboken6/tests/libsample/derived.cpp
index 310ae5e75..e7a30f311 100644
--- a/sources/shiboken6/tests/libsample/derived.cpp
+++ b/sources/shiboken6/tests/libsample/derived.cpp
@@ -67,7 +67,7 @@ struct SecretClass : public Abstract {
PrintFormat returnAnEnum() override { return Short; }
void hideFunction(HideType*) override {};
private:
- virtual void pureVirtualPrivate() override {}
+ void pureVirtualPrivate() override {}
};
Abstract *Derived::triggerImpossibleTypeDiscovery()