Skip to content

Commit c6f7563

Browse files
committed
Fix clang-format
1 parent 6ede015 commit c6f7563

File tree

1 file changed

+4
-4
lines changed
  • src/runtime/local/datastructures

1 file changed

+4
-4
lines changed

src/runtime/local/datastructures/Matrix.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ template <typename ValueType> class Matrix : public Structure {
3232

3333
protected:
3434
Matrix(size_t numRows, size_t numCols)
35-
: Structure(numRows, numCols), sparsity(-1), symmetric(BoolOrUnknown::Unknown) {
36-
// nothing to do
37-
};
35+
: Structure(numRows, numCols), sparsity(-1), symmetric(BoolOrUnknown::Unknown){
36+
// nothing to do
37+
};
3838

3939
public:
4040
/**
@@ -56,7 +56,7 @@ template <typename ValueType> class Matrix : public Structure {
5656
*/
5757
BoolOrUnknown symmetric;
5858

59-
virtual ~Matrix() {
59+
virtual ~Matrix(){
6060
// nothing to do
6161
};
6262

0 commit comments

Comments
 (0)