diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-08-28 00:24:55 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-08-28 00:24:55 +0000 |
commit | a818783eda410442e1e63898690de5ef0974e8cb (patch) | |
tree | 6a3cebef99f416ad841c13ea4c4a48fe99f36f9b /lib/Analysis/CheckSecuritySyntaxOnly.cpp | |
parent | 65a81a92eba8dace6f2381f83f9dfcbf7b848ab7 (diff) |
Use C++ style comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80320 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CheckSecuritySyntaxOnly.cpp')
-rw-r--r-- | lib/Analysis/CheckSecuritySyntaxOnly.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/CheckSecuritySyntaxOnly.cpp b/lib/Analysis/CheckSecuritySyntaxOnly.cpp index a33271fc65..3684360835 100644 --- a/lib/Analysis/CheckSecuritySyntaxOnly.cpp +++ b/lib/Analysis/CheckSecuritySyntaxOnly.cpp @@ -274,8 +274,8 @@ void WalkAST::CheckUncheckedReturnValue(CallExpr *CE) { if (!FTP) return; - /* Verify that the function takes one or two arguments (depending on - the function). */ + // Verify that the function takes one or two arguments (depending on + // the function). if (FTP->getNumArgs() != (identifierid < 4 ? 1 : 2)) return; |