]> granicus.if.org Git - clang/commitdiff
Try to bring the 32 bit buildbots back to life.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sat, 10 May 2014 20:57:56 +0000 (20:57 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sat, 10 May 2014 20:57:56 +0000 (20:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208482 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/DeclarationName.h
include/clang/AST/TemplateName.h
include/clang/Basic/OperatorKinds.h

index 08f45fcdcfe8af3c5e6b36c0bad9a291221777c1..3076b30cd377dc0c79f8d458ba442ae10b817224 100644 (file)
@@ -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;
index 8350ccd5483556a90dde85e533a0df5662db9457..f3d23b9260aed26f1369f776bd1acceee492c5ad 100644 (file)
@@ -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;
index 8064fe0519e4ddd622af12384df52c7979296caf..d3b70c2f4d224c30ee9d0bf8d7740bdb165bea54 100644 (file)
@@ -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,