From 4e701ab17756f7fc3461b35edde0f333ce87d1c0 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 1 May 2019 13:04:44 +0000 Subject: Wrap to 80 columns, no behavior change llvm-svn: 359679 --- llvm/lib/Option/OptTable.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llvm/lib/Option') diff --git a/llvm/lib/Option/OptTable.cpp b/llvm/lib/Option/OptTable.cpp index 1585059c2fb..944de9f417e 100644 --- a/llvm/lib/Option/OptTable.cpp +++ b/llvm/lib/Option/OptTable.cpp @@ -294,7 +294,8 @@ unsigned OptTable::findNearest(StringRef Option, std::string &NearestString, // Consider each possible prefix for each candidate to find the most // appropriate one. For example, if a user asks for "--helm", suggest // "--help" over "-help". - for (int P = 0; const char *const CandidatePrefix = CandidateInfo.Prefixes[P]; P++) { + for (int P = 0; + const char *const CandidatePrefix = CandidateInfo.Prefixes[P]; P++) { std::string NormalizedName = (LHS + Delimiter).str(); std::string Candidate = (CandidatePrefix + CandidateName).str(); StringRef CandidateRef = Candidate; -- cgit v1.2.3