forked from qt-creator/qt-creator
CPlusPlus: Remove Rreprocessor::run overload for QStrings
The preprocessor operates on QByteArray, making it less convenient to use strings helps preventing accidental conversion roundtrips. Change-Id: Ifb2068a8fed137c52b05f2979b99cbce3462151e Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -748,11 +748,6 @@ Preprocessor::Preprocessor(Client *client, Environment *env)
|
||||
{
|
||||
}
|
||||
|
||||
QByteArray Preprocessor::run(const QString &fileName, const QString &source)
|
||||
{
|
||||
return run(fileName, source.toUtf8());
|
||||
}
|
||||
|
||||
QByteArray Preprocessor::run(const QString &fileName,
|
||||
const QByteArray &source,
|
||||
bool noLines,
|
||||
|
||||
@@ -79,7 +79,6 @@ public:
|
||||
public:
|
||||
Preprocessor(Client *client, Environment *env);
|
||||
|
||||
QByteArray run(const QString &filename, const QString &source);
|
||||
QByteArray run(const QString &filename, const QByteArray &source,
|
||||
bool noLines = false, bool markGeneratedTokens = true);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user