[LibTooling] Fix build breakage from commit 7b7ce6683ee.
authorYitzhak Mandelbaum <yitzhakm@google.com>
Thu, 18 Apr 2019 19:19:01 +0000 (19:19 +0000)
committerYitzhak Mandelbaum <yitzhakm@google.com>
Thu, 18 Apr 2019 19:19:01 +0000 (19:19 +0000)
On configurations with -Werror,-Wmissing-field-initializers, the commit does not compile. This commit fixes the offending line.

Original Differential Revision: https://reviews.llvm.org/D60408

llvm-svn: 358705

clang/lib/Tooling/Refactoring/Transformer.cpp

index 3a7a3ff..57f6659 100644 (file)
@@ -172,7 +172,8 @@ RewriteRule tooling::makeRule(ast_matchers::internal::DynTypedMatcher M,
                               SmallVector<ASTEdit, 1> Edits) {
   M.setAllowBind(true);
   // `tryBind` is guaranteed to succeed, because `AllowBind` was set to true.
-  return RewriteRule{*M.tryBind(RewriteRule::RootId), std::move(Edits)};
+  return RewriteRule{*M.tryBind(RewriteRule::RootId), std::move(Edits),
+                     nullptr};
 }
 
 constexpr llvm::StringLiteral RewriteRule::RootId;