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

Don't include LZ4 headers in tracy headers.

The LZ4 implementation is wrapped in tracy namespace, but it also adds
some defines, which may conflict with other LZ4 implementations.
This commit is contained in:
Bartosz Taudul
2019-05-01 12:57:42 +02:00
parent 303bbdd512
commit 9ec8704dad
2 changed files with 5 additions and 5 deletions
+1 -2
View File
@@ -11,7 +11,6 @@
#include "TracyCallstack.hpp"
#include "TracySysTime.hpp"
#include "TracyFastVector.hpp"
#include "../common/tracy_lz4.hpp"
#include "../common/TracyQueue.hpp"
#include "../common/TracyAlign.hpp"
#include "../common/TracyAlloc.hpp"
@@ -450,7 +449,7 @@ private:
bool m_noExit;
std::atomic<uint32_t> m_zoneId;
LZ4_stream_t* m_stream;
void* m_stream; // LZ4_stream_t*
char* m_buffer;
int m_bufferOffset;
int m_bufferStart;