diff options
Diffstat (limited to 'clang/include/clang-c/Index.h')
-rw-r--r-- | clang/include/clang-c/Index.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index a5082d120a3..0c6d6d1c762 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -4461,7 +4461,13 @@ typedef enum { * \brief Function-local symbols should be indexed. If this is not set * function-local symbols will be ignored. */ - CXIndexOpt_IndexFunctionLocalSymbols = 0x2 + CXIndexOpt_IndexFunctionLocalSymbols = 0x2, + + /** + * \brief Implicit function/class template instantiations should be indexed. + * If this is not set, implicit instantiations will be ignored. + */ + CXIndexOpt_IndexImplicitTemplateInstantiations = 0x4 } CXIndexOptFlags; /** |