[ox/trace] Remove use of ::size_t

(synced from 78a819b360)
This commit is contained in:
2018-05-03 01:41:47 -05:00
parent e384fec0e3
commit c3d2166d89
+2 -2
View File
@@ -24,8 +24,8 @@ OutStream::OutStream(const char *file, int line, const char *ch, const char *msg
}
OutStream::~OutStream() {
constexpr size_t buffLen = 1024;
size_t size = 0;
constexpr std::size_t buffLen = 1024;
std::size_t size = 0;
uint8_t buff[buffLen];
writeMC(buff, buffLen, &m_msg, &size);
}