mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 08:44:19 -04:00
pipeline: fix compiler error on older versions of GCC
This commit is contained in:
parent
a05e928a75
commit
2cd5a04f3f
@ -50,11 +50,11 @@ class EXPCL_PANDA_PIPELINE CycleData
|
||||
{
|
||||
public:
|
||||
INLINE CycleData() = default;
|
||||
INLINE CycleData(CycleData &&from) noexcept = default;
|
||||
INLINE CycleData(CycleData &&from) = default;
|
||||
INLINE CycleData(const CycleData ©) = default;
|
||||
virtual ~CycleData();
|
||||
|
||||
CycleData &operator = (CycleData &&from) noexcept = default;
|
||||
CycleData &operator = (CycleData &&from) = default;
|
||||
CycleData &operator = (const CycleData ©) = default;
|
||||
|
||||
virtual CycleData *make_copy() const=0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user