aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-11 12:55:52 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-11 13:03:12 +0000
commitf5beedff19edbacb60cf1a8bb3d26804b50925d5 (patch)
tree346dee3ecd5c8d825bed9cf8d5d46f18c46a4833
parent57a0bc2c066624717e5980657b03c1c0e46513dc (diff)
shiboken6: Remove unused header apiextractormacros.h
Change-Id: I01a1f629727f176cb054bf1c7269b878b42b7c9f Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
-rw-r--r--sources/shiboken6/ApiExtractor/apiextractor.h1
-rw-r--r--sources/shiboken6/ApiExtractor/apiextractormacros.h41
-rw-r--r--sources/shiboken6/ApiExtractor/typedatabase.h1
3 files changed, 0 insertions, 43 deletions
diff --git a/sources/shiboken6/ApiExtractor/apiextractor.h b/sources/shiboken6/ApiExtractor/apiextractor.h
index 9c79ae7a5..3168894e7 100644
--- a/sources/shiboken6/ApiExtractor/apiextractor.h
+++ b/sources/shiboken6/ApiExtractor/apiextractor.h
@@ -31,7 +31,6 @@
#include "dependency.h"
#include "abstractmetalang_typedefs.h"
-#include "apiextractormacros.h"
#include "header_paths.h"
#include "typedatabase_typedefs.h"
#include "typesystem_typedefs.h"
diff --git a/sources/shiboken6/ApiExtractor/apiextractormacros.h b/sources/shiboken6/ApiExtractor/apiextractormacros.h
deleted file mode 100644
index 026cd5a9e..000000000
--- a/sources/shiboken6/ApiExtractor/apiextractormacros.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef APIEXTRACTORMACROS_H
-#define APIEXTRACTORMACROS_H
-
-
-// APIEXTRACTOR_API is used for the public API symbols.
-#if defined _WIN32
- #define APIEXTRACTOR_DEPRECATED(func) __declspec(deprecated) func
-#elif __GNUC__ >= 4
- #define APIEXTRACTOR_DEPRECATED(func) func __attribute__ ((deprecated))
-#else
- #define APIEXTRACTOR_DEPRECATED(func) func
-#endif
-#endif
diff --git a/sources/shiboken6/ApiExtractor/typedatabase.h b/sources/shiboken6/ApiExtractor/typedatabase.h
index 6d86196db..7dc2f4389 100644
--- a/sources/shiboken6/ApiExtractor/typedatabase.h
+++ b/sources/shiboken6/ApiExtractor/typedatabase.h
@@ -29,7 +29,6 @@
#ifndef TYPEDATABASE_H
#define TYPEDATABASE_H
-#include "apiextractormacros.h"
#include "include.h"
#include "typedatabase_typedefs.h"
#include "typesystem_enums.h"