aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/pen.h
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/libsample/pen.h')
-rw-r--r--sources/shiboken6/tests/libsample/pen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/shiboken6/tests/libsample/pen.h b/sources/shiboken6/tests/libsample/pen.h
index 4feb9f540..3e4fe5dd8 100644
--- a/sources/shiboken6/tests/libsample/pen.h
+++ b/sources/shiboken6/tests/libsample/pen.h
@@ -35,13 +35,13 @@
class LIBSAMPLE_API Color
{
public:
- Color();
+ Color() = default;
Color(SampleNamespace::InValue arg);
Color(unsigned int arg);
bool isNull() const;
private:
- bool m_null;
+ bool m_null = true;
};
class LIBSAMPLE_API Brush