r174434 - [analyzer] Fix typo, better doxygen as per Jordan's feedback.
Anna Zaks
ganna at apple.com
Tue Feb 5 11:52:24 PST 2013
Author: zaks
Date: Tue Feb 5 13:52:24 2013
New Revision: 174434
URL: http://llvm.org/viewvc/llvm-project?rev=174434&view=rev
Log:
[analyzer] Fix typo, better doxygen as per Jordan's feedback.
Modified:
cfe/trunk/include/clang/Analysis/AnalysisContext.h
Modified: cfe/trunk/include/clang/Analysis/AnalysisContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/AnalysisContext.h?rev=174434&r1=174433&r2=174434&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/AnalysisContext.h (original)
+++ cfe/trunk/include/clang/Analysis/AnalysisContext.h Tue Feb 5 13:52:24 2013
@@ -137,14 +137,14 @@ public:
Stmt *getBody() const;
/// \brief Get the body of the Declaration.
- /// \param IsAutosynthesized Output parameter that specifies if the body is
- /// auto-generated by the BodyFarm.
+ /// \param[out] IsAutosynthesized Specifies if the body is auto-generated
+ /// by the BodyFarm.
Stmt *getBody(bool &IsAutosynthesized) const;
/// \brief Checks if the body of the Decl is generated by the BodyFarm.
///
/// Note, the lookup is not free. We are going to call getBody behind
- /// the sceines.
+ /// the scenes.
/// \sa getBody
bool isBodyAutosynthesized() const;
More information about the cfe-commits
mailing list