From 5f8184d66378bae18dc3956d52107f8c324b513f Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Thu, 24 Jul 2014 18:22:15 +0000 Subject: [PATCH] Preserve libclang ABI compatibility with the 3.5 release git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@213886 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang-c/Index.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index dfc3a47f9f..27655774f0 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -2191,19 +2191,19 @@ enum CXCursorKind { */ CXCursor_OMPFlushDirective = 246, - /** \brief OpenMP ordered directive. + /** \brief Windows Structured Exception Handling's leave statement. */ - CXCursor_OMPOrderedDirective = 247, + CXCursor_SEHLeaveStmt = 247, - /** \brief OpenMP atomic directive. + /** \brief OpenMP ordered directive. */ - CXCursor_OMPAtomicDirective = 248, + CXCursor_OMPOrderedDirective = 248, - /** \brief Windows Structured Exception Handling's leave statement. + /** \brief OpenMP atomic directive. */ - CXCursor_SEHLeaveStmt = 249, + CXCursor_OMPAtomicDirective = 249, - CXCursor_LastStmt = CXCursor_SEHLeaveStmt, + CXCursor_LastStmt = CXCursor_OMPAtomicDirective, /** * \brief Cursor that represents the translation unit itself. -- 2.40.0