1 2 3 4 5 6 7 8 9 10 11
#ifndef __HYPERNEAT_THREAD_HPP__ #define __HYPERNEAT_THREAD_HPP__ #include <thread> namespace hyperneat { using Thread = std::thread; } #endif