]> granicus.if.org Git - clang/commitdiff
Silence warning about C++-style comments.
authorPeter Collingbourne <peter@pcc.me.uk>
Tue, 24 Aug 2010 00:31:37 +0000 (00:31 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Tue, 24 Aug 2010 00:31:37 +0000 (00:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111875 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang-c/Index.h

index 9615a6de399fd4b533151c465beabac3a24cb3f3..4dfaec030d1c157852bd5c6dbb2f63c62af4228c 100644 (file)
@@ -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
 };