aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/Analyses/FormatString.h
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-07-20 20:03:49 +0000
committerTed Kremenek <kremenek@apple.com>2010-07-20 20:03:49 +0000
commit92a6febe130dd9ad726983835297e11b2fa3b93f (patch)
tree7aca66305d50076dab97b16cca7d0b5ad23ac110 /include/clang/Analysis/Analyses/FormatString.h
parent649aecf55670682efb2a04a85810eef4d038c527 (diff)
Rename analyze_printf::ConversionSpecifier::IntAsCharArg to 'cArg' to match
analagous enum in analyze_scanf. This is prep for refactoring the logic for handling ConversionSpecifiers for both scanf and printf. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108897 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/Analyses/FormatString.h')
-rw-r--r--include/clang/Analysis/Analyses/FormatString.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/Analyses/FormatString.h b/include/clang/Analysis/Analyses/FormatString.h
index d76e4f7ad0..a64e4a56e6 100644
--- a/include/clang/Analysis/Analyses/FormatString.h
+++ b/include/clang/Analysis/Analyses/FormatString.h
@@ -259,7 +259,7 @@ public:
InvalidSpecifier = 0,
// C99 conversion specifiers.
dArg, // 'd'
- IntAsCharArg, // 'c'
+ cArg, // 'c'
iArg, // 'i',
oArg, // 'o',
uArg, // 'u',