I'm having a really werid issue with overloading the insertion operator (<<).
Here's my code snippet:
class instream
{
void operator<< (instream&, char[]);
};
Visual Studio keeps telling me I have "too many arguments for binary operator <<". I don't see the problem here. Is there something obvious I'm missing?