From: Benjamin Kramer Date: Sat, 10 May 2014 20:57:56 +0000 (+0000) Subject: Try to bring the 32 bit buildbots back to life. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8eccd0dc82f099aff18649a2654d39c3c311d9f4;p=clang Try to bring the 32 bit buildbots back to life. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208482 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/DeclarationName.h b/include/clang/AST/DeclarationName.h index 08f45fcdcf..3076b30cd3 100644 --- a/include/clang/AST/DeclarationName.h +++ b/include/clang/AST/DeclarationName.h @@ -29,7 +29,7 @@ namespace clang { class DeclarationNameExtra; class IdentifierInfo; class MultiKeywordSelector; - enum OverloadedOperatorKind : unsigned char; + enum OverloadedOperatorKind : int; class QualType; class Type; class TypeSourceInfo; diff --git a/include/clang/AST/TemplateName.h b/include/clang/AST/TemplateName.h index 8350ccd548..f3d23b9260 100644 --- a/include/clang/AST/TemplateName.h +++ b/include/clang/AST/TemplateName.h @@ -26,7 +26,7 @@ class DiagnosticBuilder; class IdentifierInfo; class NamedDecl; class NestedNameSpecifier; -enum OverloadedOperatorKind : unsigned char; +enum OverloadedOperatorKind : int; class OverloadedTemplateStorage; struct PrintingPolicy; class QualifiedTemplateName; diff --git a/include/clang/Basic/OperatorKinds.h b/include/clang/Basic/OperatorKinds.h index 8064fe0519..d3b70c2f4d 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 : unsigned char { +enum OverloadedOperatorKind : int { OO_None, ///< Not an overloaded operator #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ OO_##Name,