aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsmart/smart.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/tests/libsmart/smart.h')
-rw-r--r--sources/shiboken2/tests/libsmart/smart.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/shiboken2/tests/libsmart/smart.h b/sources/shiboken2/tests/libsmart/smart.h
index 2e3c96406..3347b22c1 100644
--- a/sources/shiboken2/tests/libsmart/smart.h
+++ b/sources/shiboken2/tests/libsmart/smart.h
@@ -81,7 +81,7 @@ public:
template <class T>
class SharedPtr {
public:
- SharedPtr() : m_refData(0) {
+ SharedPtr() : m_refData(nullptr) {
if (shouldPrint())
std::cout << "shared_ptr default constructor " << this << "\n";
}
@@ -122,7 +122,7 @@ public:
{
if (m_refData)
return m_refData->m_heldPtr;
- return 0;
+ return nullptr;
}
int useCount() const
@@ -147,7 +147,7 @@ public:
{
if (m_refData)
return m_refData->m_heldPtr;
- return 0;
+ return nullptr;
}
bool operator!() const