From: Martin Probst Date: Wed, 8 Jun 2016 14:05:26 +0000 (+0000) Subject: clang-format: [JS] fix a FIXME. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac13d7e4fb229f72dff9499e46c6dee19bc9a259;p=clang clang-format: [JS] fix a FIXME. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272143 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/SortJavaScriptImports.cpp b/lib/Format/SortJavaScriptImports.cpp index fc2a653492..73586d59d5 100644 --- a/lib/Format/SortJavaScriptImports.cpp +++ b/lib/Format/SortJavaScriptImports.cpp @@ -179,7 +179,7 @@ public: // after applying source sorting. // This loop just backfills trailing spaces after the imports, which are // harmless and will be stripped by the subsequent formatting pass. - // TODO: A better long term fix is to re-calculate Ranges after sorting. + // FIXME: A better long term fix is to re-calculate Ranges after sorting. unsigned PreviousSize = getSourceText(InsertionPoint).size(); while (ReferencesText.size() < PreviousSize) { ReferencesText += " ";