diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-03-06 00:16:36 +0000 |
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-03-06 00:16:36 +0000 |
| commit | b5e420f7072c937fb76b8e292a94eae454910e14 (patch) | |
| tree | 16111f0f71d4f2dd878038fbc476f748d5d0b0b7 | |
| parent | 87acf19a5c6e8f280585e629ea982e7526e8c695 (diff) | |
| download | bcm5719-llvm-b5e420f7072c937fb76b8e292a94eae454910e14.tar.gz bcm5719-llvm-b5e420f7072c937fb76b8e292a94eae454910e14.zip | |
Add some doxygen comments.
llvm-svn: 152075
| -rw-r--r-- | clang/include/clang/Lex/PPCallbacks.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/clang/include/clang/Lex/PPCallbacks.h b/clang/include/clang/Lex/PPCallbacks.h index a1b0ff49a1b..33558c8dfdc 100644 --- a/clang/include/clang/Lex/PPCallbacks.h +++ b/clang/include/clang/Lex/PPCallbacks.h @@ -190,35 +190,42 @@ public: } /// If -- This hook is called whenever an #if is seen. - /// \param Range The SourceRange of the expression being tested. + /// \param Loc the source location of the directive. + /// \param ConditionRange The SourceRange of the expression being tested. // FIXME: better to pass in a list (or tree!) of Tokens. virtual void If(SourceLocation Loc, SourceRange ConditionRange) { } /// Elif -- This hook is called whenever an #elif is seen. - /// \param Range The SourceRange of the expression being tested. + /// \param Loc the source location of the directive. + /// \param ConditionRange The SourceRange of the expression being tested. + /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive. // FIXME: better to pass in a list (or tree!) of Tokens. virtual void Elif(SourceLocation Loc, SourceRange ConditionRange, SourceLocation IfLoc) { } /// Ifdef -- This hook is called whenever an #ifdef is seen. - /// \param Loc The location of the token being tested. + /// \param Loc the source location of the directive. /// \param II Information on the token being tested. virtual void Ifdef(SourceLocation Loc, const Token &MacroNameTok) { } /// Ifndef -- This hook is called whenever an #ifndef is seen. - /// \param Loc The location of the token being tested. + /// \param Loc the source location of the directive. /// \param II Information on the token being tested. virtual void Ifndef(SourceLocation Loc, const Token &MacroNameTok) { } /// Else -- This hook is called whenever an #else is seen. + /// \param Loc the source location of the directive. + /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive. virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { } /// Endif -- This hook is called whenever an #endif is seen. + /// \param Loc the source location of the directive. + /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive. virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) { } }; |

