diff options
Diffstat (limited to 'clang/include/clang-c/Index.h')
-rw-r--r-- | clang/include/clang-c/Index.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index b77ddcb6c05..7eff0a4216a 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -653,6 +653,12 @@ enum CXDiagnosticSeverity { CXDiagnostic_Note = 1, /** + * \brief This diagnostic is a remark that provides additional information + * for the user. + */ + CXDiagnostic_Remark = 5, + + /** * \brief This diagnostic indicates suspicious code that may not be * wrong. */ |