diff options
Diffstat (limited to 'include/clang-c/Index.h')
-rw-r--r-- | include/clang-c/Index.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index d05510e281..904585f108 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -4494,7 +4494,12 @@ typedef enum { * \brief Implicit function/class template instantiations should be indexed. * If this is not set, implicit instantiations will be ignored. */ - CXIndexOpt_IndexImplicitTemplateInstantiations = 0x4 + CXIndexOpt_IndexImplicitTemplateInstantiations = 0x4, + + /** + * \brief Suppress all compiler warnings when parsing for indexing. + */ + CXIndexOpt_SuppressWarnings = 0x8 } CXIndexOptFlags; /** |