diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-02-16 01:46:47 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-02-16 01:46:47 +0000 |
commit | 252bee91e9961d9182323c4017092f90d6a09b1d (patch) | |
tree | 57e0c64319d45c58617313dc835df198020d9564 | |
parent | a12d294db5bd59cd8836b9bd0dafadaaa2e3dd8a (diff) |
Added 'AsWideChar' flag to LengthModifier.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96309 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/Analyses/PrintfFormatString.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 { |