aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/clangparser/compilersupport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/ApiExtractor/clangparser/compilersupport.cpp')
-rw-r--r--sources/shiboken6/ApiExtractor/clangparser/compilersupport.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/sources/shiboken6/ApiExtractor/clangparser/compilersupport.cpp b/sources/shiboken6/ApiExtractor/clangparser/compilersupport.cpp
index 1f67a143b..560b26b63 100644
--- a/sources/shiboken6/ApiExtractor/clangparser/compilersupport.cpp
+++ b/sources/shiboken6/ApiExtractor/clangparser/compilersupport.cpp
@@ -90,9 +90,6 @@ bool setCompiler(const QString &name)
QString _compilerPath; // Pre-defined compiler path (from command line)
QStringList _compilerArguments; // Arguments
-static unsigned _pointerSize = QT_POINTER_SIZE * 8;
-static QString _targetTriple;
-
const QString &compilerPath()
{
return _compilerPath;
@@ -713,26 +710,6 @@ LanguageLevel languageLevelFromOption(const char *o)
return LanguageLevel::Default;
}
-unsigned pointerSize()
-{
- return _pointerSize;
-}
-
-void setPointerSize(unsigned ps)
-{
- _pointerSize = ps;
-}
-
-QString targetTriple()
-{
- return _targetTriple;
-
-}
-void setTargetTriple(const QString &t)
-{
- _targetTriple = t;
-}
-
bool isCrossCompilation()
{
return platform() != hostPlatform() || architecture() != hostArchitecture()