mirror of
https://github.com/xfarrow/lasd.git
synced 2025-06-05 21:49:14 +02:00
Library 5
fixed compile issues
This commit is contained in:
4
librerie/exercise5/matrix/matrix.cpp
Normal file → Executable file
4
librerie/exercise5/matrix/matrix.cpp
Normal file → Executable 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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user