Quote...
if( you->HasQuestion() && !( you->rtfm() || you->rtfs() || you->rtfb()) ) {
you->stfu();
you->gtfo();
delete(you);
}
....
I would recommend making sure that you is a valid pointer, since if you is null that'll crash.
I would recommend
...
if( you && you->HasQuestion() && !( you->rtfm() || you->rtfs() || you->rtfb()) ) {
you->stfu();
you->gtfo();
delete(you);
}
...
or
...
if( you != NULL && you->HasQuestion() && !( you->rtfm() || you->rtfs() || you->rtfb()) ) {
you->stfu();
you->gtfo();
delete(you);
}
...