Skip to content

Use qualified std::thread to avoid name collisions on AIX

Peter Bell requested to merge thread-qual into master

See scipy#11322

The "pthread.h" header on AIX exports a struct thread which clashes with std::thread because of using namespace std. This fixes the current issue but more generally it would be better to not have using namespace std at all.

Merge request reports