Merge pull request #782 from PhenomRetroShare/Fix_MacOSX_Compilation

Fix MacOSX compilation.
This commit is contained in:
csoler 2017-04-21 19:45:30 +02:00 committed by GitHub
commit 4ab60219b2
2 changed files with 5 additions and 0 deletions

View File

@ -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;

View File

@ -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;