mirror of
https://github.com/DrBeef/Raze.git
synced 2025-04-03 22:50:47 +00:00
- GCC needs this commented out but really shouldn't.
This commit is contained in:
parent
d2eaaf7ac1
commit
f599040212
1 changed files with 2 additions and 0 deletions
|
@ -183,10 +183,12 @@ public:
|
|||
TObjPtr() = default;
|
||||
TObjPtr(const TObjPtr<T> &q) = default;
|
||||
|
||||
#if 0 // Courtesy of GCC being stupid and not fully recognizing TobjPtr as trivial. GZDoom needs this constructor, but it breaks compilation in Raze, but only with GCC.
|
||||
TObjPtr(T q) noexcept
|
||||
: pp(q)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
T operator=(T q)
|
||||
{
|
||||
pp = q;
|
||||
|
|
Loading…
Reference in a new issue