diff options
Diffstat (limited to 'src/libs/cplusplus/PreprocessorClient.cpp')
-rw-r--r-- | src/libs/cplusplus/PreprocessorClient.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/cplusplus/PreprocessorClient.cpp b/src/libs/cplusplus/PreprocessorClient.cpp index 1b2595651c..68be342821 100644 --- a/src/libs/cplusplus/PreprocessorClient.cpp +++ b/src/libs/cplusplus/PreprocessorClient.cpp @@ -40,7 +40,7 @@ using namespace CPlusPlus; */ /*! - \fn void Client::passedMacroDefinitionCheck(unsigned offset, unsigned line, const Macro ¯o) + \fn void Client::passedMacroDefinitionCheck(int offset, int line, const Macro ¯o) Called when the preprocessor checks whether a macro is defined or not and the result is positive. @@ -49,7 +49,7 @@ using namespace CPlusPlus; */ /*! - \fn void Client::failedMacroDefinitionCheck(unsigned offset, const ByteArrayRef &name) + \fn void Client::failedMacroDefinitionCheck(int offset, const ByteArrayRef &name) Called when the preprocessor checks whether a macro is defined or not and the result is negative. @@ -58,8 +58,8 @@ using namespace CPlusPlus; */ /*! - \fn void Client::startExpandingMacro(unsigned offset, - unsigned line, + \fn void Client::startExpandingMacro(int offset, + int line, const Macro ¯o, const QVector<MacroArgumentReference> &actuals = QVector<MacroArgumentReference>()) |