From 63b820865d90e6a672f932bd2ca3c4447bd26e12 Mon Sep 17 00:00:00 2001 From: FranckRJ Date: Mon, 15 Apr 2024 01:37:48 +0200 Subject: [PATCH] Maybe fix a compile error on old GCC by reverting some changes. --- include/fakeit/StubbingProgress.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fakeit/StubbingProgress.hpp b/include/fakeit/StubbingProgress.hpp index d6554788..c4f7a5e6 100644 --- a/include/fakeit/StubbingProgress.hpp +++ b/include/fakeit/StubbingProgress.hpp @@ -40,7 +40,8 @@ namespace fakeit { template struct BasicDoImplHelper { - virtual ~BasicDoImplHelper() FAKEIT_THROWS = default; + virtual ~BasicDoImplHelper() FAKEIT_THROWS { + } virtual Self& Do(std::function::type...)> method) { return DoImpl(new Repeat(method));