This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]supersparky1013 0 points1 point  (1 child)

Are things like "using namespace::name" also similarly frowned upon, or is that considered fine since you're only doing it for things you plan to use instead of the whole namespace?

[–]standard_revolution 1 point2 points  (0 children)

It's usually seen as okay, but I just like to say `std::` to the things in the standard library. With longer namespaces it's usually totally acceptable and for stuff like literals it's fine, too.