When using "g++" to compile some code, I can, for example, use types like "int32_t" (instead of "std::int32_t") or functions like "memcpy(...)" (instead of "std::memcpy(...)").
Is there a way to have the use of the namespace (or a "using namespace" statement) enforced by the compiler?
Thanks a lot for your answers.