Library 5

fixed compile issues
This commit is contained in:
Alessandro Ferro
2021-05-31 11:26:27 +02:00
parent fe51a1b547
commit 4aa82d6108
42 changed files with 130 additions and 49 deletions

4
librerie/exercise5/matrix/matrix.cpp Normal file → Executable file
View File

@ -2,12 +2,12 @@
namespace lasd {
template <typename Data>
ulong Matrix<Data>::RowNumber() noexcept{
ulong Matrix<Data>::RowNumber() const noexcept{
return rows;
}
template <typename Data>
ulong Matrix<Data>::ColumnNumber() noexcept{
ulong Matrix<Data>::ColumnNumber() const noexcept{
return columns;
}