@@ -71,7 +71,7 @@ class SparseTensorLevel {
71
71
72
72
protected:
73
73
SparseTensorLevel (unsigned tid, unsigned lvl, LevelType lt, Value lvlSize)
74
- : tid(tid), lvl(lvl), lt(lt), lvlSize(lvlSize){};
74
+ : tid(tid), lvl(lvl), lt(lt), lvlSize(lvlSize) {};
75
75
76
76
public:
77
77
const unsigned tid, lvl;
@@ -103,7 +103,7 @@ class SparseIterationSpace {
103
103
// Constructs a 1-D iteration space.
104
104
SparseIterationSpace (Location loc, OpBuilder &b, Value t, unsigned tid,
105
105
Level lvl, ValueRange parentPos)
106
- : SparseIterationSpace(loc, b, t, tid, {lvl, lvl + 1 }, parentPos){};
106
+ : SparseIterationSpace(loc, b, t, tid, {lvl, lvl + 1 }, parentPos) {};
107
107
108
108
bool isUnique () const { return lvls.back ()->isUnique (); }
109
109
@@ -150,13 +150,13 @@ class SparseIterator {
150
150
unsigned cursorValsCnt,
151
151
SmallVectorImpl<Value> &cursorValStorage)
152
152
: batchCrds(0 ), kind(kind), tid(tid), lvl(lvl), crd(nullptr ),
153
- cursorValsCnt (cursorValsCnt), cursorValsStorageRef(cursorValStorage){};
153
+ cursorValsCnt (cursorValsCnt), cursorValsStorageRef(cursorValStorage) {};
154
154
155
155
SparseIterator (IterKind kind, unsigned cursorValsCnt,
156
156
SmallVectorImpl<Value> &cursorValStorage,
157
157
const SparseIterator &delegate)
158
158
: SparseIterator(kind, delegate.tid, delegate.lvl, cursorValsCnt,
159
- cursorValStorage){};
159
+ cursorValStorage) {};
160
160
161
161
SparseIterator (IterKind kind, const SparseIterator &wrap,
162
162
unsigned extraCursorCnt = 0 )
0 commit comments