1
0
forked from leto/LeMA

Localized titre to title

This commit is contained in:
Leto 2024-12-24 14:17:53 +01:00
parent b919f4a249
commit e4026b8d60

View File

@ -141,8 +141,8 @@ Matrix Matrix::Substract(const Matrix* other){
}
// Print a matrix in terminal, with a title
void Matrix::Print(std::string_view titre){
std::cout << titre << std::endl;
void Matrix::Print(std::string_view title){
std::cout << title << std::endl;
for(int m = 0; m < values.size(); m++){
std::cout << '|';
for(int n = 0; n < values[m].size(); n++){