pasky / pachi

A fairly strong Go/Baduk/Weiqi playing program
http://pachi.or.cz/
GNU General Public License v2.0
514 stars 117 forks source link

add attribute noreturn to thread callbacks #34

Closed sthalik closed 8 years ago

sthalik commented 8 years ago

GNU CC complains about the return value without an actual return.

This is caused by pthread_exit in pthread.h on mingw-w64 lacking the noreturn attribute.

pasky commented 8 years ago

thx