- fix potential problems with builds - size of some structures depends on #define in projects. But #define can be different for app and library (for example) - it will result in strange crashes. Fixed.

This commit is contained in:
2019-03-14 11:37:49 +02:00
parent 11db9b7450
commit e8963264e9
4 changed files with 7 additions and 10 deletions
+5
View File
@@ -20,6 +20,10 @@ public:
bool operator < (const Uuid& right) const;
protected:
#if defined(USE_NULL_UUID)
unsigned char mUuid[16];
#else
#if defined(TARGET_LINUX) || defined(TARGET_OSX)
uuid_t mUuid;
#endif
@@ -29,6 +33,7 @@ protected:
#if defined(TARGET_ANDROID)
// Stub only
#endif
#endif
};