Put static const into IndexVar::def (a definition is not required unless odr-used)

This commit is contained in:
Fangrui Song 2018-06-17 13:29:24 -07:00
parent 9b9bf1cd19
commit a96d9613f4

View File

@ -1495,13 +1495,17 @@ void OnIndexDeclaration(CXClientData client_data, const CXIdxDeclInfo* decl) {
var.def.kind = lsSymbolKind::Parameter;
//}
if (decl->isDefinition) {
if (!decl->isDefinition)
var.declarations.push_back(
SetUse(db, spell, lex_parent, Role::Declaration));
// For `static const`, a definition at namespace scope is not required
// unless odr-used.
if (decl->isDefinition ||
(decl->entityInfo->kind == CXIdxEntity_CXXStaticVariable &&
clang_isConstQualifiedType(clang_getCursorType(decl->cursor)))) {
var.def.spell = SetUse(db, spell, sem_parent, Role::Definition);
var.def.extent =
SetUse(db, cursor.get_extent(), lex_parent, Role::None);
} else {
var.declarations.push_back(
SetUse(db, spell, lex_parent, Role::Declaration));
}
cursor.VisitChildren(&AddDeclInitializerUsagesVisitor, db);