Автоконфигурация Spring Security не работает в весенней загрузке 2.1.2.

Чтобы добавить к ответу Мехридада,

namespace Math
{
    class Matrix
    {
       public:

       [...]


    }   
    std::ostream& operator<< (std::ostream& stream, const Math::Matrix& matrix);
}

В вашей реализации

std::ostream& operator<<(std::ostream& stream, 
                     const Math::Matrix& matrix) {
    matrix.print(stream); //assuming you define print for matrix 
    return stream;
 }
0
задан Arojprasad 17 January 2019 в 13:18
поделиться