Skip to content

Commit 9722e8f

Browse files
committed
[clang] NFC: Remove duplicate DependentSizedMatrixType methods
Inherited from MatrixType. Reviewed By: fhahn Differential Revision: https://reviews.llvm.org/D109137
1 parent 4a2a947 commit 9722e8f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

clang/include/clang/AST/Type.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3524,14 +3524,10 @@ class DependentSizedMatrixType final : public MatrixType {
35243524
Expr *ColumnExpr, SourceLocation loc);
35253525

35263526
public:
3527-
QualType getElementType() const { return ElementType; }
35283527
Expr *getRowExpr() const { return RowExpr; }
35293528
Expr *getColumnExpr() const { return ColumnExpr; }
35303529
SourceLocation getAttributeLoc() const { return loc; }
35313530

3532-
bool isSugared() const { return false; }
3533-
QualType desugar() const { return QualType(this, 0); }
3534-
35353531
static bool classof(const Type *T) {
35363532
return T->getTypeClass() == DependentSizedMatrix;
35373533
}

0 commit comments

Comments
 (0)