This is an automated email from the ASF dual-hosted git repository.

yibocai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ab345d  MINOR: [C++] Ignore clangd index files
8ab345d is described below

commit 8ab345d58e38f84dcc335fd47aa856988214e674
Author: Yibo Cai <[email protected]>
AuthorDate: Mon Nov 15 03:21:00 2021 +0000

    MINOR: [C++] Ignore clangd index files
    
    clangd 12 has moved index files from .clangd/ to .cache/clangd/.
    clangd is a language server for code completion, go-to-definition, etc.
    
    Closes #11700 from cyb70289/ignore-clangd-index
    
    Authored-by: Yibo Cai <[email protected]>
    Signed-off-by: Yibo Cai <[email protected]>
---
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitignore b/.gitignore
index 6f12336..8b12a9a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -47,6 +47,8 @@ perf.data.old
 cpp/.idea/
 .clangd/
 cpp/.clangd/
+.cache/clangd/
+cpp/.cache/clangd/
 cpp/apidoc/xml/
 docs/example.gz
 docs/example1.dat

Reply via email to