We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ede015 commit c6f7563Copy full SHA for c6f7563
src/runtime/local/datastructures/Matrix.h
@@ -32,9 +32,9 @@ template <typename ValueType> class Matrix : public Structure {
32
33
protected:
34
Matrix(size_t numRows, size_t numCols)
35
- : Structure(numRows, numCols), sparsity(-1), symmetric(BoolOrUnknown::Unknown) {
36
- // nothing to do
37
- };
+ : Structure(numRows, numCols), sparsity(-1), symmetric(BoolOrUnknown::Unknown){
+ // nothing to do
+ };
38
39
public:
40
/**
@@ -56,7 +56,7 @@ template <typename ValueType> class Matrix : public Structure {
56
*/
57
BoolOrUnknown symmetric;
58
59
- virtual ~Matrix() {
+ virtual ~Matrix(){
60
// nothing to do
61
};
62
0 commit comments