From: Evan Wilde Date: Mon, 17 Jul 2023 05:43:47 +0000 (-0700) Subject: [NFC][clang] Fix format in UnsafeBufferUsage.cpp X-Git-Tag: upstream/17.0.6~1567 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7b45945fbb7c4ac27c456dd7c2ff8bb40fcf8f8;p=platform%2Fupstream%2Fllvm.git [NFC][clang] Fix format in UnsafeBufferUsage.cpp There were two whitespaces on an otherwise empty that were causing the bots to fail due to formatting issues. Deleting extra whitespace now. --- diff --git a/clang/lib/Analysis/UnsafeBufferUsage.cpp b/clang/lib/Analysis/UnsafeBufferUsage.cpp index c8c1452..142c56b 100644 --- a/clang/lib/Analysis/UnsafeBufferUsage.cpp +++ b/clang/lib/Analysis/UnsafeBufferUsage.cpp @@ -1809,7 +1809,7 @@ createOverloadsForFixedParams(unsigned ParmIdx, StringRef NewTyText, // FIXME: need to make this conflict checking better: if (hasConflictingOverload(FD)) return std::nullopt; - + const SourceManager &SM = Ctx.getSourceManager(); const LangOptions &LangOpts = Ctx.getLangOpts(); // FIXME Respect indentation of the original code.