[cfe-commits] r80320 - /cfe/trunk/lib/Analysis/CheckSecuritySyntaxOnly.cpp
Ted Kremenek
kremenek at apple.com
Thu Aug 27 17:24:56 PDT 2009
Author: kremenek
Date: Thu Aug 27 19:24:55 2009
New Revision: 80320
URL: http://llvm.org/viewvc/llvm-project?rev=80320&view=rev
Log:
Use C++ style comments.
Modified:
cfe/trunk/lib/Analysis/CheckSecuritySyntaxOnly.cpp
Modified: cfe/trunk/lib/Analysis/CheckSecuritySyntaxOnly.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/CheckSecuritySyntaxOnly.cpp?rev=80320&r1=80319&r2=80320&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/CheckSecuritySyntaxOnly.cpp (original)
+++ cfe/trunk/lib/Analysis/CheckSecuritySyntaxOnly.cpp Thu Aug 27 19:24:55 2009
@@ -274,8 +274,8 @@
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;
More information about the cfe-commits
mailing list