mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-04 13:40:58 +01:00
Try another definition of Maybe for xcode 5.1
This commit is contained in:
@@ -172,10 +172,17 @@ private:
|
||||
}
|
||||
|
||||
// Data
|
||||
#if 0
|
||||
typename ::std::aligned_storage<
|
||||
sizeof(X)
|
||||
// , alignof(X) // Not here yet in all compilers
|
||||
>::type storage{};
|
||||
#else
|
||||
union {
|
||||
double d;
|
||||
char storage[sizeof(X)];
|
||||
};
|
||||
#endif
|
||||
X* pp{ nullptr };
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user