mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-13 00:19:30 -05:00
Merge pull request #782 from PhenomRetroShare/Fix_MacOSX_Compilation
Fix MacOSX compilation.
This commit is contained in:
commit
4ab60219b2
@ -104,7 +104,11 @@ public:
|
||||
w[nwh] = cos(delta * nwh);
|
||||
w[nwh + 1] = w[nwh];
|
||||
for (j = 2; j <= nwh - 2; j += 2) {
|
||||
#ifdef __APPLE__
|
||||
__sincos(delta*j,&y,&x);
|
||||
#else
|
||||
sincos(delta*j,&y,&x) ;
|
||||
#endif
|
||||
//x = cos(delta * j);
|
||||
//y = sin(delta * j);
|
||||
w[j] = x;
|
||||
|
@ -53,6 +53,7 @@ public:
|
||||
{
|
||||
return recvItem(i);
|
||||
}
|
||||
bool getServiceItemNames(uint32_t /*service_type*/, std::map<uint8_t,std::string>& /*names*/) { return false; }
|
||||
private:
|
||||
RsPeerId mPeerId;
|
||||
RecvPeerItemIface* mRecvIface;
|
||||
|
Loading…
Reference in New Issue
Block a user