commit x64 compilation from lulu cause the other branch dont seems to compile properly at home

This commit is contained in:
2026-07-17 16:08:20 +02:00
parent c0f3eeb00d
commit 0efa4ee6f7
625 changed files with 117283 additions and 4426 deletions

View File

@ -34,7 +34,7 @@ namespace GS {
* __LOG_H__: Header (eg: __LOG_H__ << "Physics entry point.\n")
* __LOG_W__: Warning
* __LOG_E__: Error
* __LOG_E__: Non-maskable
* __LOG_N__: Non-maskable
Standard logs may be output to the __LOG__ stream.
@ -81,9 +81,9 @@ public:
Log &operator << (const uchar);
Log &operator << (const ushort);
Log &operator << (const uint);
#if __PLATFORM_IOS__
Log &operator << (const size_t);
#endif
Log &operator << (const float);
Log &operator << (const bool);
Log &operator << (const void *);
@ -117,7 +117,6 @@ public:
//------------------------------------------------------------------------------
#define __LOG__ GS::LogSystem::Get().GetLog() // Standard
#define __LOG_H__ __LOG__ << "[H] " // Header
#define __LOG_CAM__ __LOG__ << "[WEBCAM] " // Header
#if 0
#define __LOG_W__ __LOG__ << "[*] " << __FUNCTION__ << " (" << __FILE__ << ":" << __LINE__ << ") " // Warning
#define __LOG_E__ __LOG__ << "[!] " << __FUNCTION__ << " (" << __FILE__ << ":" << __LINE__ << ") " // Error
@ -126,6 +125,8 @@ public:
#define __LOG_E__ __LOG__ << "[!] "
#endif
#define __LOG_V__ __LOG__ << "[V] " // Verbose
#define __LOG_SENS__ __LOG__ << "[REALSENSE] " // Verbose
#define __LOG_CAM__ __LOG__ << "[WEBCAM] " // Verbose
#define __LOG_F__ __LOG__ << __FUNCTION__ << ": "
#define __LOG_FUNC__ __LOG_V__ << __FUNCTION__ << "\n";