mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
Fix VarDef::is_local; default cacheDirectory to ".ccls-cache"
This commit is contained in:
parent
27a5b24b59
commit
d7c48d12d6
@ -33,8 +33,9 @@ struct Config {
|
|||||||
std::string compilationDatabaseCommand;
|
std::string compilationDatabaseCommand;
|
||||||
// Directory containing compile_commands.json.
|
// Directory containing compile_commands.json.
|
||||||
std::string compilationDatabaseDirectory;
|
std::string compilationDatabaseDirectory;
|
||||||
// Cache directory for indexed files.
|
// Cache directory for indexed files, either absolute or relative to the
|
||||||
std::string cacheDirectory;
|
// project root.
|
||||||
|
std::string cacheDirectory = ".ccls-cache";
|
||||||
// Cache serialization format.
|
// Cache serialization format.
|
||||||
//
|
//
|
||||||
// "json" generates `cacheDirectory/.../xxx.json` files which can be pretty
|
// "json" generates `cacheDirectory/.../xxx.json` files which can be pretty
|
||||||
|
@ -190,7 +190,7 @@ struct VarDef : NameMixin<VarDef> {
|
|||||||
uint8_t storage = clang::SC_None;
|
uint8_t storage = clang::SC_None;
|
||||||
|
|
||||||
bool is_local() const {
|
bool is_local() const {
|
||||||
return spell && spell->kind != SymbolKind::File &&
|
return spell && spell->kind == SymbolKind::Func &&
|
||||||
storage == clang::SC_None;
|
storage == clang::SC_None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user