Код: Выделить всё
std: :o fstream
Код: Выделить всё
f<<std::boolalpha;
. ПриD:\Projects\cpp\MCSP\MCSP\WinMain.cpp|19|error: ambiguous overload for 'operator<<' (operand types are 'TUTF8FileStream' and 'std::ios_base&(std::ios_base&)')
Код: Выделить всё
MyStream & MyStream: :o perator << (const std::ios_base Base)
{
(*((std: :o fstream*)this))<<Base;
return *this;
}
Код: Выделить всё
MyStream & MyStream: :o perator << (const std::ios_base &Base)
{
(*((std: :o fstream*)this))<<Base;
return *this;
}
Код: Выделить всё
(*((std: :o fstream*)this))<<Base;
156|error: cannot bind 'std::basic_ostream<char>' lvalue to 'std::basic_ostream<char>&&'|