File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22
22
#include < sys/prctl.h>
23
23
#endif
24
24
#else
25
- #include < Windows .h>
25
+ #include < windows .h>
26
26
#endif
27
27
#include < string.h>
28
28
#include < algorithm>
@@ -64,7 +64,7 @@ AsyncFileLogger::~AsyncFileLogger()
64
64
}
65
65
while (!writeBuffers_.empty ())
66
66
{
67
- StringPtr tmpPtr = (StringPtr &&) writeBuffers_.front ();
67
+ StringPtr tmpPtr = (StringPtr &&)writeBuffers_.front ();
68
68
writeBuffers_.pop ();
69
69
writeLogToFile (tmpPtr);
70
70
}
@@ -162,7 +162,7 @@ void AsyncFileLogger::logThreadFunc()
162
162
163
163
while (!tmpBuffers_.empty ())
164
164
{
165
- StringPtr tmpPtr = (StringPtr &&) tmpBuffers_.front ();
165
+ StringPtr tmpPtr = (StringPtr &&)tmpBuffers_.front ();
166
166
tmpBuffers_.pop ();
167
167
writeLogToFile (tmpPtr);
168
168
tmpPtr->clear ();
Original file line number Diff line number Diff line change 21
21
#include < iostream>
22
22
#include < string.h>
23
23
#ifdef _WIN32
24
- #include < WinSock2 .h>
24
+ #include < winsock2 .h>
25
25
#include < time.h>
26
26
#endif
27
27
Original file line number Diff line number Diff line change 14
14
15
15
#include " Utilities.h"
16
16
#ifdef _WIN32
17
- #include < Windows .h>
17
+ #include < windows .h>
18
18
#include < ntsecapi.h>
19
19
#include < algorithm>
20
20
#else // _WIN32
Original file line number Diff line number Diff line change 21
21
typedef unsigned char BYTE ; // 8-bit byte
22
22
typedef unsigned int WORD ; // 32-bit word, change to "long" for 16-bit machines
23
23
#else
24
- #include <Windows .h>
24
+ #include <windows .h>
25
25
#endif
26
26
27
27
typedef struct
Original file line number Diff line number Diff line change 13
13
#ifndef _WIN32
14
14
#include <stddef.h>
15
15
#else
16
- #include <Windows .h>
16
+ #include <windows .h>
17
17
#endif
18
18
19
19
/****************************** MACROS ******************************/
You can’t perform that action at this time.
0 commit comments