summaryrefslogtreecommitdiffstats
path: root/clang/include/clang-c
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2010-08-24 00:31:37 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2010-08-24 00:31:37 +0000
commit5caf5af4213a0f76ddabec9577999a277a11de0a (patch)
treee4fd2ce038e2931c44f4b645786ab2d3f154cea2 /clang/include/clang-c
parent8e65aeea5eafa9f4b756fb06e007434649a8cb0c (diff)
downloadbcm5719-llvm-5caf5af4213a0f76ddabec9577999a277a11de0a.tar.gz
bcm5719-llvm-5caf5af4213a0f76ddabec9577999a277a11de0a.zip
Silence warning about C++-style comments.
llvm-svn: 111875
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r--clang/include/clang-c/Index.h22
1 files changed, 15 insertions, 7 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h
index 9615a6de399..4dfaec030d1 100644
--- a/clang/include/clang-c/Index.h
+++ b/clang/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
};
OpenPOWER on IntegriCloud