Browse Source

pipeline: fix compiler error on older versions of GCC

rdb 7 years ago
parent
commit
2cd5a04f3f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      panda/src/pipeline/cycleData.h

+ 2 - 2
panda/src/pipeline/cycleData.h

@@ -50,11 +50,11 @@ class EXPCL_PANDA_PIPELINE CycleData
 {
 {
 public:
 public:
   INLINE CycleData() = default;
   INLINE CycleData() = default;
-  INLINE CycleData(CycleData &&from) noexcept = default;
+  INLINE CycleData(CycleData &&from) = default;
   INLINE CycleData(const CycleData &copy) = default;
   INLINE CycleData(const CycleData &copy) = default;
   virtual ~CycleData();
   virtual ~CycleData();
 
 
-  CycleData &operator = (CycleData &&from) noexcept = default;
+  CycleData &operator = (CycleData &&from) = default;
   CycleData &operator = (const CycleData &copy) = default;
   CycleData &operator = (const CycleData &copy) = default;
 
 
   virtual CycleData *make_copy() const=0;
   virtual CycleData *make_copy() const=0;