Skip to content

Commit

Permalink
Wrap to 80 columns. No behavior change.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@237549 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
nico committed May 18, 2015
1 parent b1136b0 commit 0412b95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions include/clang/Analysis/Analyses/FormatString.h
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,9 @@ class FormatStringHandler {
bool ParsePrintfString(FormatStringHandler &H,
const char *beg, const char *end, const LangOptions &LO,
const TargetInfo &Target, bool isFreeBSDKPrintf);
bool ParseFormatStringHasSArg(const char *beg, const char *end, const LangOptions &LO,
const TargetInfo &Target);

bool ParseFormatStringHasSArg(const char *beg, const char *end,
const LangOptions &LO, const TargetInfo &Target);

bool ParseScanfString(FormatStringHandler &H,
const char *beg, const char *end, const LangOptions &LO,
Expand Down
3 changes: 2 additions & 1 deletion lib/Analysis/FormatString.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,8 @@ bool FormatSpecifier::hasStandardLengthModifier() const {
llvm_unreachable("Invalid LengthModifier Kind!");
}

bool FormatSpecifier::hasStandardConversionSpecifier(const LangOptions &LangOpt) const {
bool FormatSpecifier::hasStandardConversionSpecifier(
const LangOptions &LangOpt) const {
switch (CS.getKind()) {
case ConversionSpecifier::cArg:
case ConversionSpecifier::dArg:
Expand Down

0 comments on commit 0412b95

Please sign in to comment.