summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2016-06-09 16:16:06 +0000
committerOlivier Goffart <ogoffart@woboq.com>2016-06-09 16:16:06 +0000
commit8b3338668e4e558eafd6438973b9f76536c1fd7b (patch)
tree0ad8e5a4f2b0c07f40ce6c2b0c293d7a1f47de46 /include/clang-c
parent4aeabe6f4bd99399e0f65efa918a5039f660ab93 (diff)
Make sizeof and alignof a CXCursor_UnaryExpr
So we can match sizeof expressions more accurately than with UnexposedExpr Differential Revision: http://reviews.llvm.org/D18081 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272274 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 1762148dbc..89612b9c93 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -1932,7 +1932,7 @@ enum CXCursorKind {
*/
CXCursor_CXXDeleteExpr = 135,
- /** \brief A unary expression.
+ /** \brief A unary expression. (noexcept, sizeof, or other traits)
*/
CXCursor_UnaryExpr = 136,