Quick question:
Does declaring an entire namespace affect a program's performance vs not declaring the entire namespace and doing something like std::cout.
Does it affect the length of the compilation process or after the compilation during runtime
I do not see where qualifying something with a namespace would make that much difference with compile time unless you have many files with 1000s to 10s of thousands of lines of code. Just my thought.
I do not see where using different namespaces would affect run time because by then namespaces have been dealt with to give you the code to run the program.