-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Labels
good first issueGood for newcomersGood for newcomersperformanceProfiling, runtime, and memory consumptionProfiling, runtime, and memory consumptionrefactorChange code without changing testsChange code without changing tests
Description
We have using namespace detail in function local. It should not be allowed because it prevents a maintainer to quickly know which functions are from the lower namespace detail.
template <typename T>
void add(T * dest, T const * dest_end, T const * src1, T const * src2)
{
using namespace detail;
//...
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomersperformanceProfiling, runtime, and memory consumptionProfiling, runtime, and memory consumptionrefactorChange code without changing testsChange code without changing tests