aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsample/derived.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-07-03 08:24:42 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-07-03 13:42:12 +0200
commit3dd32863337ea2f6308ebf2f7656795d3fd488c9 (patch)
tree08a3b35607dee19536ccb5f21b2ede0fdc41cc79 /sources/shiboken2/tests/libsample/derived.cpp
parent4f4f1be9f46e02e87357aeee613cfd5ea0be8220 (diff)
parent67d635fe2cc2c89c30486a2e26dea4106a9d9c16 (diff)
Merge "Merge remote-tracking branch 'origin/5.13' into dev"
Diffstat (limited to 'sources/shiboken2/tests/libsample/derived.cpp')
-rw-r--r--sources/shiboken2/tests/libsample/derived.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/shiboken2/tests/libsample/derived.cpp b/sources/shiboken2/tests/libsample/derived.cpp
index 4fa3e4081..0dc026876 100644
--- a/sources/shiboken2/tests/libsample/derived.cpp
+++ b/sources/shiboken2/tests/libsample/derived.cpp
@@ -54,7 +54,7 @@ Derived::pureVirtual()
void*
Derived::pureVirtualReturningVoidPtr()
{
- return 0;
+ return nullptr;
}
void
@@ -100,7 +100,7 @@ Derived::otherOverloaded(int a, double b)
struct SecretClass : public Abstract {
virtual void pureVirtual() {}
- virtual void* pureVirtualReturningVoidPtr() { return 0; }
+ virtual void *pureVirtualReturningVoidPtr() { return nullptr; }
virtual PrintFormat returnAnEnum() { return Short; }
void hideFunction(HideType*){};
private: