calling operator

The only way I found was this: call ‘operator<<(std::ostream&, myclass&)'(mycout, c) Since std::cout wasn’t visible to gdb for some reason, I had to resort to creating my own like this: std::ostream mycout(std::cout.rdbuf()); You haven’t stated any reasons for wanting to do this but won’t print yourvariable be easier? If this is an absolute must you … Read more