fasiondog / hikyuu

Hikyuu Quant Framework 基于C++/Python的极速开源量化交易研究框架,同时可基于策略部件进行资产重用,快速累积策略资产。
http://hikyuu.org/
Apache License 2.0
2.2k stars 577 forks source link

ignore .clangd #150

Closed yangrq1018 closed 9 months ago

yangrq1018 commented 9 months ago

I have a .clangd file like this for my neovim LSP

# patch your C++ standard headers here to make clang happy
CompileFlags:
  CompilationDatabase: .vscode
  Add: [
    -isystem,
    /usr/include/c++/13.2.1,
    -isystem,
    /usr/include/c++/13.2.1/backward,
    -isystem,
    /usr/local/include,
    -isystem,
    /usr/include,
    -isystem,
    /usr/include/x86_64-linux-gnu/c++/13.2.1,
  ]

This file could have some user-specific settings to guide clangd where the standard C++ headers are, it may not be a good idea to track it.