Skip to content
Snippets Groups Projects
Commit 5f8184d6 authored by Reid Kleckner's avatar Reid Kleckner
Browse files

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
parent bb349466
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment