From 2cd5a04f3f862c9c3fcce1a2841ce4aa610b3303 Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 17 Oct 2018 19:54:29 +0200 Subject: [PATCH] pipeline: fix compiler error on older versions of GCC --- panda/src/pipeline/cycleData.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/pipeline/cycleData.h b/panda/src/pipeline/cycleData.h index bf0071ac67..ef21ad7a33 100644 --- a/panda/src/pipeline/cycleData.h +++ b/panda/src/pipeline/cycleData.h @@ -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;