c++ Programming Glossary: my_stuff
What are the pitfalls of ADL? http://stackoverflow.com/questions/2958648/what-are-the-pitfalls-of-adl who knows why you did this that's not important namespace my_stuff struct unicorn unicorn stuff goes here std ostream operator.. that creates a unicorn and prints it four times int main my_stuff unicorn x utility print_n x 4 You compile this program run it.. the print function you expected it to call. It's called my_stuff print . Why is my_stuff print selected During name lookup the..
|