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 | aeca0954c2d190facc55e3052e011f943482fe13 (patch) | |
tree | e4e4930ed9e8b94ddc05cfe0639719e355ac2835 /clang/lib/Analysis/CheckSecuritySyntaxOnly.cpp | |
parent | 2cb0c3b5cb99803d9c93d16553038f82be7fe990 (diff) | |
download | bcm5719-llvm-aeca0954c2d190facc55e3052e011f943482fe13.tar.gz bcm5719-llvm-aeca0954c2d190facc55e3052e011f943482fe13.zip |
Use C++ style comments.
llvm-svn: 80320
Diffstat (limited to 'clang/lib/Analysis/CheckSecuritySyntaxOnly.cpp')
-rw-r--r-- | clang/lib/Analysis/CheckSecuritySyntaxOnly.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Analysis/CheckSecuritySyntaxOnly.cpp b/clang/lib/Analysis/CheckSecuritySyntaxOnly.cpp index a33271fc653..3684360835c 100644 --- a/clang/lib/Analysis/CheckSecuritySyntaxOnly.cpp +++ b/clang/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; |