From 3daaf32e936b3c24956661362d4cc9daea6332f0 Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Mon, 2 Dec 2013 15:22:30 +0000 Subject: [PATCH] Adapt the code to the interface change in r196108. llvm-svn: 196109 --- .../tool/ClangApplyReplacementsMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/clang-apply-replacements/tool/ClangApplyReplacementsMain.cpp b/clang-tools-extra/clang-apply-replacements/tool/ClangApplyReplacementsMain.cpp index c192718ce602..4d21bb876453 100644 --- a/clang-tools-extra/clang-apply-replacements/tool/ClangApplyReplacementsMain.cpp +++ b/clang-tools-extra/clang-apply-replacements/tool/ClangApplyReplacementsMain.cpp @@ -217,7 +217,7 @@ int main(int argc, char **argv) { // Determine a formatting style from options. format::FormatStyle FormatStyle; if (DoFormat) - FormatStyle = format::getStyle(FormatStyleOpt, FormatStyleConfig); + FormatStyle = format::getStyle(FormatStyleOpt, FormatStyleConfig, "LLVM"); TUReplacements TUs; TUReplacementFiles TURFiles; -- GitLab