diff options
Diffstat (limited to 'include/clang/Sema/Sema.h')
-rw-r--r-- | include/clang/Sema/Sema.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 2dc09d339c..07a7be298e 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -3148,7 +3148,10 @@ public: UPPC_DataMemberType, /// \brief The size of a bit-field. - UPPC_BitFieldWidth + UPPC_BitFieldWidth, + + /// \brief The expression in a static assertion. + UPPC_StaticAssertExpression }; /// \brief If the given type contains an unexpanded parameter pack, |