]> granicus.if.org Git - clang/commitdiff
clang-format: [JS] fix a FIXME.
authorMartin Probst <martin@probst.io>
Wed, 8 Jun 2016 14:05:26 +0000 (14:05 +0000)
committerMartin Probst <martin@probst.io>
Wed, 8 Jun 2016 14:05:26 +0000 (14:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272143 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Format/SortJavaScriptImports.cpp

index fc2a65349272a4f3b78ade0e3cff2ec57c4cfb8e..73586d59d50fbbcaf35f05878a933b46b25fa4b0 100644 (file)
@@ -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 += " ";