1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Rearrange Socket to reduce struct size.

This commit is contained in:
Bartosz Taudul
2019-01-29 21:56:10 +01:00
parent b7fd0bdc9c
commit 1585be7ff3
2 changed files with 5 additions and 6 deletions
+1 -2
View File
@@ -39,10 +39,9 @@ private:
int RecvBuffered( void* buf, int len, const timeval* tv );
int Recv( void* buf, int len, const timeval* tv );
int m_sock;
char* m_buf;
char* m_bufPtr;
int m_sock;
int m_bufLeft;
};