diff options
Diffstat (limited to 'sources/shiboken6/ApiExtractor/addedfunction.h')
| -rw-r--r-- | sources/shiboken6/ApiExtractor/addedfunction.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sources/shiboken6/ApiExtractor/addedfunction.h b/sources/shiboken6/ApiExtractor/addedfunction.h index 0f5dc89ef..8a0475f33 100644 --- a/sources/shiboken6/ApiExtractor/addedfunction.h +++ b/sources/shiboken6/ApiExtractor/addedfunction.h @@ -8,9 +8,10 @@ #include "parser/typeinfo.h" #include <QtCore/QList> -#include <QtCore/QSharedPointer> #include <QtCore/QString> +#include <memory> + QT_FORWARD_DECLARE_CLASS(QDebug) /// \internal @@ -19,7 +20,7 @@ QT_FORWARD_DECLARE_CLASS(QDebug) /// will be inserted into the right AbstractMetaClass. struct AddedFunction { - using AddedFunctionPtr = QSharedPointer<AddedFunction>; + using AddedFunctionPtr = std::shared_ptr<AddedFunction>; /// Function access types. enum Access { |
