]> granicus.if.org Git - clang/commitdiff
Fix more line endings.
authorIvan Donchevskii <ivan.donchevskii@qt.io>
Wed, 3 Jan 2018 10:40:11 +0000 (10:40 +0000)
committerIvan Donchevskii <ivan.donchevskii@qt.io>
Wed, 3 Jan 2018 10:40:11 +0000 (10:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@321701 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang-c/Index.h

index 2ea801913f24b7048a5991543c91bfdffdd3ed6f..a0c4dc98ada2e06f627d9a1d3abad751c29dd8d0 100644 (file)
  * CINDEX_VERSION_MAJOR is intended for "major" source/ABI breaking changes.
  *
  * The policy about the libclang API was always to keep it source and ABI
- * compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable.\r
- */\r
-#define CINDEX_VERSION_MAJOR 0\r
-#define CINDEX_VERSION_MINOR 46\r
-\r
-#define CINDEX_VERSION_ENCODE(major, minor) ( \\r
-      ((major) * 10000)                       \\r
+ * compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable.
+ */
+#define CINDEX_VERSION_MAJOR 0
+#define CINDEX_VERSION_MINOR 46
+
+#define CINDEX_VERSION_ENCODE(major, minor) ( \
+      ((major) * 10000)                       \
     + ((minor) *     1))
 
 #define CINDEX_VERSION CINDEX_VERSION_ENCODE( \
@@ -2638,22 +2638,22 @@ CINDEX_LINKAGE enum CXCursorKind clang_getCursorKind(CXCursor);
 
 /**
  * \brief Determine whether the given cursor kind represents a declaration.
- */\r
-CINDEX_LINKAGE unsigned clang_isDeclaration(enum CXCursorKind);\r
-\r
-/**\r
- * \brief Determine whether the given declaration is invalid.\r
- *\r
- * A declaration is invalid if it could not be parsed successfully.\r
- *\r
- * \returns non-zero if the cursor represents a declaration and it is\r
- * invalid, otherwise NULL.\r
- */\r
-CINDEX_LINKAGE unsigned clang_isInvalidDeclaration(CXCursor);\r
-\r
-/**\r
- * \brief Determine whether the given cursor kind represents a simple\r
- * reference.\r
+ */
+CINDEX_LINKAGE unsigned clang_isDeclaration(enum CXCursorKind);
+
+/**
+ * \brief Determine whether the given declaration is invalid.
+ *
+ * A declaration is invalid if it could not be parsed successfully.
+ *
+ * \returns non-zero if the cursor represents a declaration and it is
+ * invalid, otherwise NULL.
+ */
+CINDEX_LINKAGE unsigned clang_isInvalidDeclaration(CXCursor);
+
+/**
+ * \brief Determine whether the given cursor kind represents a simple
+ * reference.
  *
  * Note that other kinds of cursors (such as expressions) can also refer to
  * other cursors. Use clang_getCursorReferenced() to determine whether a