summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/OperatorKinds.h
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2014-05-10 16:31:55 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2014-05-10 16:31:55 +0000
commit10ffef9f56b83f157d16137bad682f9e59753dc4 (patch)
treeebb323c3630577c93d0eed094456e1bccefc90b9 /include/clang/Basic/OperatorKinds.h
parent39b4d625bb49250cbaa638be35c2ef0b7c8efb6c (diff)
Decouple ExprCXX.h and DeclCXX.h and clean up includes a bit.
Required pulling LambdaExpr::Capture into its own header. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/OperatorKinds.h')
-rw-r--r--include/clang/Basic/OperatorKinds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/OperatorKinds.h b/include/clang/Basic/OperatorKinds.h
index 2ceab9cbab..8064fe0519 100644
--- a/include/clang/Basic/OperatorKinds.h
+++ b/include/clang/Basic/OperatorKinds.h
@@ -19,7 +19,7 @@ namespace clang {
/// \brief Enumeration specifying the different kinds of C++ overloaded
/// operators.
-enum OverloadedOperatorKind {
+enum OverloadedOperatorKind : unsigned char {
OO_None, ///< Not an overloaded operator
#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
OO_##Name,