Hoist argument type checking into CheckFormatHandler. This is prep for scanf format

string argument type checking.

llvm-svn: 109428
This commit is contained in:
Ted Kremenek
2010-07-26 19:45:54 +00:00
parent 6adb7e35ab
commit df4472bca0
4 changed files with 90 additions and 44 deletions

View File

@@ -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();
}