Skip to content

Commit 4fecdc4

Browse files
committed
get rid of clang:: specifier for enum values
1 parent b373f15 commit 4fecdc4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/lib/Sema/HLSLExternalSemaSource.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ BinaryOperator *getSizeOfLEQ16Expr(ASTContext &Context, SourceLocation NameLoc,
595595
Context.getTrivialTypeSourceInfo(TType, NameLoc);
596596

597597
UnaryExprOrTypeTraitExpr *sizeOfExpr = new (Context) UnaryExprOrTypeTraitExpr(
598-
clang::UETT_SizeOf, TTypeSourceInfo, UnsignedLongType, NameLoc, NameLoc);
598+
UETT_SizeOf, TTypeSourceInfo, UnsignedLongType, NameLoc, NameLoc);
599599

600600
// Create an IntegerLiteral for the value '16' with size type
601601
QualType SizeType = Context.getSizeType();
@@ -608,10 +608,10 @@ BinaryOperator *getSizeOfLEQ16Expr(ASTContext &Context, SourceLocation NameLoc,
608608
BinaryOperator *binaryOperator =
609609
BinaryOperator::Create(Context, sizeOfExpr, // Left-hand side expression
610610
SizeLiteral, // Right-hand side expression
611-
clang::BO_LE, // Binary operator kind (<=)
611+
BO_LE, // Binary operator kind (<=)
612612
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
615615
NameLoc, // Source location of operator
616616
FPOptionsOverride());
617617

0 commit comments

Comments
 (0)