diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2010-08-24 00:31:37 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2010-08-24 00:31:37 +0000 |
commit | 076c22a99ed82e11b59e8fbf57d8467ceb3fec77 (patch) | |
tree | 2d228c4813b09e7edab32366c9de1fa90e02d613 | |
parent | 07a57e0c0ff4a5ae8ca134f01c66aa17b1aaf0e9 (diff) |
Silence warning about C++-style comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111875 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang-c/Index.h | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index 9615a6de39..4dfaec030d 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -97,16 +97,24 @@ struct CXUnsavedFile { unsigned long Length; }; -/// \brief Describes the availability of a particular entity, which indicates -/// whether the use of this entity will result in a warning or error due to -/// it being deprecated or unavailable. +/** + * \brief Describes the availability of a particular entity, which indicates + * whether the use of this entity will result in a warning or error due to + * it being deprecated or unavailable. + */ enum CXAvailabilityKind { - /// \brief The entity is available. + /** + * \brief The entity is available. + */ CXAvailability_Available, - /// \brief The entity is available, but has been deprecated (and its use is - /// not recommended). + /** + * \brief The entity is available, but has been deprecated (and its use is + * not recommended). + */ CXAvailability_Deprecated, - /// \brief The entity is not available; any use of it will be an error. + /** + * \brief The entity is not available; any use of it will be an error. + */ CXAvailability_NotAvailable }; |