WIP: Third commit with EndFramec issue

This commit is contained in:
Aik-Siong Koh
2023-04-29 11:19:31 -06:00
parent 43570d87cd
commit 5c4b08606d
15 changed files with 81 additions and 59 deletions

View File

@@ -4,7 +4,7 @@ using namespace MbD;
FullMatrix<double>::FullMatrix(int m, int n) {
for (int i = 0; i < m; i++) {
auto* row = new FullRow<double>(n);
auto row = std::make_shared<FullRow<double>>(n);
this->push_back(row);
}
}