From 0ea4fd952586760bc4c61fa4c7b4c1ed01481568 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Tue, 20 Feb 2018 09:26:38 +0000 Subject: [PATCH] clang-format plugin: Add missing semicolon in list of file extensions (PR36383) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@325566 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs b/tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs index efb2147f2b..1071b680ae 100644 --- a/tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs +++ b/tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs @@ -38,7 +38,7 @@ namespace LLVM.ClangFormat private string style = "file"; private bool formatOnSave = false; private string formatOnSaveFileExtensions = - ".c;.cpp;.cxx;.cc;.tli;.tlh;.h;.hh;.hpp;.hxx;.hh;.inl" + + ".c;.cpp;.cxx;.cc;.tli;.tlh;.h;.hh;.hpp;.hxx;.hh;.inl;" + ".java;.js;.ts;.m;.mm;.proto;.protodevel;.td"; public OptionPageGrid Clone() -- 2.40.0