mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 16:13:39 +00:00
Merge branch 'master' into ModularizeBPTC
This commit is contained in:
commit
5725220ba6
2 changed files with 3 additions and 1 deletions
|
@ -64,7 +64,7 @@ TEST(VectorBase, Constructors) {
|
|||
for(int i = 0; i < 7; i++)
|
||||
v7i[i] = -i;
|
||||
FasTC::VectorBase<unsigned, 16> v16u;
|
||||
for(int i = 0; i < 7; i++)
|
||||
for(int i = 0; i < 16; i++)
|
||||
v16u[i] = i;
|
||||
|
||||
#define TEST_VECTOR_COPY_CONS(v, t, n) \
|
||||
|
|
|
@ -140,6 +140,8 @@ void TCThread::Yield() {
|
|||
uint64 TCThread::ThreadID() {
|
||||
#ifdef __MINGW32__
|
||||
return static_cast<uint64>(pthread_self().x);
|
||||
#elif defined __APPLE__
|
||||
return reinterpret_cast<uint64>(pthread_self());
|
||||
#else
|
||||
return static_cast<uint64>(pthread_self());
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue