I am trying to make a custom stream class because for some reason standard string objects crash my program when i try to output them, i believe i know why now. When i tried to overload the << operator for a string object by making it a friend of my class, whenever i try to return it the os i get this error:

main.cpp|71|Error E2125 : Compiler could not generate copy constructor for class 'ostream' in function operator <<(ostream &,const u_string &)|
||=== Build finished: 1 errors, 0 warnings ===|


this is what the sample of my code looks like:

std::ostream operator<<(std::ostream& os, const u_string& uStr) {
os<<uStr.str;
return os;

}

this is the definition of this prototype defined in my class:

friend std::ostream operator<<(std::ostream& os, const u_string& uStr);

I would like it if someone could tell me how do fix this or atleast what might be causing this so i can figure out a solution. Thanks

Recommended Answers

All 2 Replies

Apparently you want to return a reference, like so

friend std::ostream & operator<<(std::ostream& os, const u_string& uStr);
// and
std::ostream & operator<<(std::ostream& os, const u_string& uStr) {
os<<uStr.str;
return os;
}

Apparently you want to return a reference, like so

friend std::ostream & operator<<(std::ostream& os, const u_string& uStr);
// and
std::ostream & operator<<(std::ostream& os, const u_string& uStr) {
os<<uStr.str;
return os;
}

wow thanks a ton i can't believe it was that simple.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.