From ac13d7e4fb229f72dff9499e46c6dee19bc9a259 Mon Sep 17 00:00:00 2001 From: Martin Probst <martin@probst.io> Date: Wed, 8 Jun 2016 14:05:26 +0000 Subject: [PATCH] clang-format: [JS] fix a FIXME. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272143 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Format/SortJavaScriptImports.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Format/SortJavaScriptImports.cpp b/lib/Format/SortJavaScriptImports.cpp index fc2a6534927..73586d59d50 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 += " "; -- GitLab