libresapi fix compile error on windows due to time_t usage

This commit is contained in:
Gioacchino Mazzurco 2018-10-07 14:03:27 +02:00
parent ddf3164545
commit 72d8364370
No known key found for this signature in database
GPG key ID: A1FBCA3872E87051
3 changed files with 7 additions and 6 deletions

View file

@ -26,6 +26,7 @@
#include "StateTokenServer.h"
#include <retroshare/rsnotify.h>
#include <retroshare/rsmsgs.h>
#include "util/rstime.h"
class RsPeers;
class RsIdentity;
@ -117,7 +118,7 @@ public:
class LobbyParticipantsInfo{
public:
StateToken state_token;
std::map<RsGxsId, time_t> participants;
std::map<RsGxsId, rstime_t> participants;
};
class ChatInfo{