aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/ScanfFormatString.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-07-26 19:45:54 +0000
committerTed Kremenek <kremenek@apple.com>2010-07-26 19:45:54 +0000
commitf762905bdefad77f91c7c6782a9c17e6b274d393 (patch)
tree6067506e43e636361daa51dbd42fc3a7fceae0b1 /lib/Analysis/ScanfFormatString.cpp
parent666a197deb75d95c78ddd39274af1a54240828d8 (diff)
Hoist argument type checking into CheckFormatHandler. This is prep for scanf format
string argument type checking. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@109428 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ScanfFormatString.cpp')
-rw-r--r--lib/Analysis/ScanfFormatString.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Analysis/ScanfFormatString.cpp b/lib/Analysis/ScanfFormatString.cpp
index 61af1d6737..d65352ac87 100644
--- a/lib/Analysis/ScanfFormatString.cpp
+++ b/lib/Analysis/ScanfFormatString.cpp
@@ -217,4 +217,10 @@ bool clang::analyze_format_string::ParseScanfString(FormatStringHandler &H,
return false;
}
+ArgTypeResult ScanfSpecifier::getArgType(ASTContext &Ctx) const {
+ // FIXME: Fill in.
+ return ArgTypeResult();
+}
+
+