]> granicus.if.org Git - clang/commitdiff
Fix grammar in a comment, wrap to 80 columns. No behavior change.
authorNico Weber <nicolasweber@gmx.de>
Thu, 12 Mar 2015 19:37:10 +0000 (19:37 +0000)
committerNico Weber <nicolasweber@gmx.de>
Thu, 12 Mar 2015 19:37:10 +0000 (19:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@232087 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/Tools.cpp

index ece5f1b82df83749d607cc739d4edbf84b94e90c..fd8d72b0d7b7f0e2001c69916ba2998710685eb8 100644 (file)
@@ -8239,7 +8239,7 @@ std::unique_ptr<Command> visualstudio::Compile::GetCommand(
     }
   }
 
-  // Flags for which clang-cl have an alias.
+  // Flags for which clang-cl has an alias.
   // FIXME: How can we ensure this stays in sync with relevant clang-cl options?
 
   if (Args.hasFlag(options::OPT__SLASH_GR_, options::OPT__SLASH_GR,
@@ -8259,7 +8259,8 @@ std::unique_ptr<Command> visualstudio::Compile::GetCommand(
   if (Args.hasArg(options::OPT_g_Flag, options::OPT_gline_tables_only))
     CmdArgs.push_back("/Z7");
 
-  std::vector<std::string> Includes = Args.getAllArgValues(options::OPT_include);
+  std::vector<std::string> Includes =
+      Args.getAllArgValues(options::OPT_include);
   for (const auto &Include : Includes)
     CmdArgs.push_back(Args.MakeArgString(std::string("/FI") + Include));