Skip to content

Commit

Permalink
Maybe fix a compile error on old GCC by reverting some changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
FranckRJ committed Apr 14, 2024
1 parent dbc4039 commit 63b8208
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/fakeit/StubbingProgress.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ namespace fakeit {

template<typename Self, typename R, typename ... arglist>
struct BasicDoImplHelper {
virtual ~BasicDoImplHelper() FAKEIT_THROWS = default;
virtual ~BasicDoImplHelper() FAKEIT_THROWS {
}

virtual Self& Do(std::function<R(const typename fakeit::test_arg<arglist>::type...)> method) {
return DoImpl(new Repeat<R, arglist...>(method));
Expand Down

0 comments on commit 63b8208

Please sign in to comment.