From: Ted Kremenek Date: Tue, 16 Feb 2010 01:46:47 +0000 (+0000) Subject: Added 'AsWideChar' flag to LengthModifier. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=252bee91e9961d9182323c4017092f90d6a09b1d;p=clang Added 'AsWideChar' flag to LengthModifier. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96309 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/Analyses/PrintfFormatString.h b/include/clang/Analysis/Analyses/PrintfFormatString.h index 0153f724a7..4a02831a6d 100644 --- a/include/clang/Analysis/Analyses/PrintfFormatString.h +++ b/include/clang/Analysis/Analyses/PrintfFormatString.h @@ -113,7 +113,8 @@ enum LengthModifier { AsIntMax, // 'j' AsSizeT, // 'z' AsPtrDiff, // 't' - AsLongDouble // 'L' + AsLongDouble, // 'L' + AsWideChar = AsLong // for '%ls' }; class OptionalAmount {