diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-05-14 17:35:07 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-05-14 17:35:07 +0000 |
| commit | d3e4ba18ac3c05987f54ed16d7ef1798ff1f3581 (patch) | |
| tree | d9a1dedefdf2ffff6fba441b9ec371fa53ebb34e | |
| parent | 9453ab8c9cd5ad1c661c560b47f72259666fbf7e (diff) | |
| download | bcm5719-llvm-d3e4ba18ac3c05987f54ed16d7ef1798ff1f3581.tar.gz bcm5719-llvm-d3e4ba18ac3c05987f54ed16d7ef1798ff1f3581.zip | |
fit in 80 cols, remove prototypes for handling #assert since apparently noone cares.
llvm-svn: 103782
| -rw-r--r-- | clang/include/clang/Lex/Preprocessor.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/clang/include/clang/Lex/Preprocessor.h b/clang/include/clang/Lex/Preprocessor.h index 20d9fc50e49..f01b3afc45f 100644 --- a/clang/include/clang/Lex/Preprocessor.h +++ b/clang/include/clang/Lex/Preprocessor.h @@ -290,8 +290,8 @@ public: /// expansions going on at the time. PreprocessorLexer *getCurrentLexer() const { return CurPPLexer; } - /// getCurrentFileLexer - Return the current file lexer being lexed from. Note - /// that this ignores any potentially active macro expansions and _Pragma + /// getCurrentFileLexer - Return the current file lexer being lexed from. + /// Note that this ignores any potentially active macro expansions and _Pragma /// expansions going on at the time. PreprocessorLexer *getCurrentFileLexer() const; @@ -753,9 +753,9 @@ public: /// #include FOO /// because in this case, "<a/b.h>" is returned as 7 tokens, not one. /// - /// This code concatenates and consumes tokens up to the '>' token. It returns - /// false if the > was found, otherwise it returns true if it finds and consumes - /// the EOM marker. + /// This code concatenates and consumes tokens up to the '>' token. It + /// returns false if the > was found, otherwise it returns true if it finds + /// and consumes the EOM marker. bool ConcatenateIncludeName(llvm::SmallString<128> &FilenameBuffer); private: @@ -900,8 +900,6 @@ private: // Macro handling. void HandleDefineDirective(Token &Tok); void HandleUndefDirective(Token &Tok); - // HandleAssertDirective(Token &Tok); - // HandleUnassertDirective(Token &Tok); // Conditional Inclusion. void HandleIfdefDirective(Token &Tok, bool isIfndef, |

