Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

truth

Name: Anonymous 2012-11-30 1:02

>you will never have a gf that you have loving passionate sex with

Name: Anonymous 2012-11-30 3:14

>>1
I did and I had, but I still agree with >>4

I also hate how sepples made it impossible to tell if your object will be copied by looking at procedure application.  Consider this code:

void pirate_a(Copyrighted& piratee)
{
    std::cout << piratee.get() << std::endl;
}
void pirate_b(Copyrighted piratee)
{
    std::cout << piratee.get() << std::endl;
}
...
    Copyrighted gaga;
    gaga.set("Lady Gaga", "Beautiful Dirty Rich");
    pirate_a(gaga); // This one only does ``fair use''.
    pirate_b(gaga); // This one is a dirty pirate!
...


You have no way of telling which constructor will be called without fucking reading the header file!  C++ is bullshit.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List