Hacker News new | ask | show | jobs
by nurettin 1105 days ago
I've bee using C++ since the late 90s, and namespaces are still annoying.
2 comments

Just use `using namespace std;` inside your function and C++ suddenly becomes nice.
Using boost or std in a function is much better than doing it in the header for obvious reasons, but still annoying.
How so?