summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-04-30 17:53:53 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-02 11:14:29 +0000
commita2b38f64e6def1538b9d153ec4c6589fa9b6d3c0 (patch)
tree1f1e97fecc126233edad4b942cb019d26a065b6e /src/xml
parent7a0d4b39daa1beed7070ceb43414eb55934f1266 (diff)
Remove handling of missing =delete and =default support
Change-Id: I006dfd0b7cfa3bda5e5ab01bcefa851f031dfe0e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/sax/qxml.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/xml/sax/qxml.h b/src/xml/sax/qxml.h
index 26b674c894..9be14bd7a9 100644
--- a/src/xml/sax/qxml.h
+++ b/src/xml/sax/qxml.h
@@ -116,12 +116,10 @@ class Q_XML_EXPORT QXmlAttributes
{
public:
QXmlAttributes();
-#ifdef Q_COMPILER_DEFAULT_MEMBERS
QXmlAttributes(const QXmlAttributes &) = default;
QXmlAttributes(QXmlAttributes &&) noexcept = default;
QXmlAttributes &operator=(const QXmlAttributes &) = default;
QXmlAttributes &operator=(QXmlAttributes &&) noexcept = default;
-#endif // default members
QT6_NOT_VIRTUAL ~QXmlAttributes();