From 252bee91e9961d9182323c4017092f90d6a09b1d Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 16 Feb 2010 01:46:47 +0000 Subject: [PATCH] Added 'AsWideChar' flag to LengthModifier. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96309 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Analysis/Analyses/PrintfFormatString.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 { -- 2.40.0