@@ -595,7 +595,7 @@ BinaryOperator *getSizeOfLEQ16Expr(ASTContext &Context, SourceLocation NameLoc,
595
595
Context.getTrivialTypeSourceInfo (TType, NameLoc);
596
596
597
597
UnaryExprOrTypeTraitExpr *sizeOfExpr = new (Context) UnaryExprOrTypeTraitExpr (
598
- clang:: UETT_SizeOf, TTypeSourceInfo, UnsignedLongType, NameLoc, NameLoc);
598
+ UETT_SizeOf, TTypeSourceInfo, UnsignedLongType, NameLoc, NameLoc);
599
599
600
600
// Create an IntegerLiteral for the value '16' with size type
601
601
QualType SizeType = Context.getSizeType ();
@@ -608,10 +608,10 @@ BinaryOperator *getSizeOfLEQ16Expr(ASTContext &Context, SourceLocation NameLoc,
608
608
BinaryOperator *binaryOperator =
609
609
BinaryOperator::Create (Context, sizeOfExpr, // Left-hand side expression
610
610
SizeLiteral, // Right-hand side expression
611
- clang:: BO_LE, // Binary operator kind (<=)
611
+ BO_LE, // Binary operator kind (<=)
612
612
BoolTy, // Result type (bool)
613
- clang:: VK_LValue, // Value kind
614
- clang:: OK_Ordinary, // Object kind
613
+ VK_LValue, // Value kind
614
+ OK_Ordinary, // Object kind
615
615
NameLoc, // Source location of operator
616
616
FPOptionsOverride ());
617
617
0 commit comments