[cfe-commits] r96309 - /cfe/trunk/include/clang/Analysis/Analyses/PrintfFormatString.h
Ted Kremenek
kremenek at apple.com
Mon Feb 15 17:46:48 PST 2010
Author: kremenek
Date: Mon Feb 15 19:46:47 2010
New Revision: 96309
URL: http://llvm.org/viewvc/llvm-project?rev=96309&view=rev
Log:
Added 'AsWideChar' flag to LengthModifier.
Modified:
cfe/trunk/include/clang/Analysis/Analyses/PrintfFormatString.h
Modified: cfe/trunk/include/clang/Analysis/Analyses/PrintfFormatString.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/Analyses/PrintfFormatString.h?rev=96309&r1=96308&r2=96309&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/Analyses/PrintfFormatString.h (original)
+++ cfe/trunk/include/clang/Analysis/Analyses/PrintfFormatString.h Mon Feb 15 19:46:47 2010
@@ -113,7 +113,8 @@
AsIntMax, // 'j'
AsSizeT, // 'z'
AsPtrDiff, // 't'
- AsLongDouble // 'L'
+ AsLongDouble, // 'L'
+ AsWideChar = AsLong // for '%ls'
};
class OptionalAmount {
More information about the cfe-commits
mailing list