================
@@ -2886,6 +2886,49 @@ class CXXPseudoDestructorExpr : public Expr {
}
};
+/// Represents a C++26 __builtin_type_order(T, U) expression. Used to implement
+/// std::type_order.
+class BuiltinTypeOrderExpr final : public Expr {
+ friend class ASTStmtReader;
+
+ SourceLocation Loc;
+ SourceLocation RParenLoc;
+ TypeSourceInfo *Lhs;
+ TypeSourceInfo *Rhs;
----------------
tbaederr wrote:
These should be LHS and RHS, same for the getters in this class.
https://github.com/llvm/llvm-project/pull/216462
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits