aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/libsample/main.cpp')
-rw-r--r--sources/shiboken6/tests/libsample/main.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/sources/shiboken6/tests/libsample/main.cpp b/sources/shiboken6/tests/libsample/main.cpp
index 8791deaf2..1b44642ae 100644
--- a/sources/shiboken6/tests/libsample/main.cpp
+++ b/sources/shiboken6/tests/libsample/main.cpp
@@ -26,8 +26,7 @@ main(int argv, char **argc)
derived.callPureVirtual();
std::cout << std::endl;
- Abstract* abs;
- abs = Abstract::createObject();
+ auto *abs = Abstract::createObject();
std::cout << "Abstract::createObject(): " << abs << std::endl << std::endl;
delete abs;
@@ -48,7 +47,7 @@ main(int argv, char **argc)
std::cout << "\n-----------------------------------------\n";
KinderGarten kg;
- Derived* d[] = { 0, 0, 0 };
+ Derived *d[] = { 0, 0, 0 };
for (int i = 0; i < 3; i++) {
d[i] = new Derived(i);
@@ -70,7 +69,7 @@ main(int argv, char **argc)
std::cout << "\n* release child ";
d[1]->show();
std::cout << " -------------\n";
- Abstract* released = kg.releaseChild(d[1]);
+ Abstract *released = kg.releaseChild(d[1]);
std::cout << "released: ";
released->show();
std::cout << std::endl;