We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5842a56 commit b3a8fd5Copy full SHA for b3a8fd5
include/quill/core/LoggerBase.h
@@ -34,7 +34,7 @@ class BacktraceStorage;
34
class LoggerManager;
35
36
/***/
37
-class alignas(CACHE_LINE_SIZE) LoggerBase
+class alignas(QUILL_CACHE_LINE_SIZE) LoggerBase
38
{
39
public:
40
@@ -57,7 +57,7 @@ class alignas(CACHE_LINE_SIZE) LoggerBase
57
}
58
59
#if __cplusplus >= 201700 && !defined(_WIN32) && !defined(_MSC_VER)
60
- void* operator new(size_t i) { return aligned_alloc(i, detail::CACHE_LINE_SIZE); }
+ void* operator new(size_t i) { return aligned_alloc(i, QUILL_CACHE_LINE_SIZE); }
61
void operator delete(void* p) { std::free(p); }
62
#endif
63
0 commit comments