Code:
ostream& operator <<( ostream& os, const String& wrd )
{
    os << wrd.str << endl;
    return os;
}
I am receiving the following err msg for my operator :

Cannot create pre-compiled header: code in header
Can anyone tell me what this means.

Thanx
Sophie