[cfe-commits] r111875 - /cfe/trunk/include/clang-c/Index.h
Peter Collingbourne
peter at pcc.me.uk
Mon Aug 23 17:31:37 PDT 2010
Author: pcc
Date: Mon Aug 23 19:31:37 2010
New Revision: 111875
URL: http://llvm.org/viewvc/llvm-project?rev=111875&view=rev
Log:
Silence warning about C++-style comments.
Modified:
cfe/trunk/include/clang-c/Index.h
Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=111875&r1=111874&r2=111875&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Mon Aug 23 19:31:37 2010
@@ -97,16 +97,24 @@
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
};
More information about the cfe-commits
mailing list