We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gmock-actions
1 parent 52204f7 commit 50a9511Copy full SHA for 50a9511
googlemock/include/gmock/gmock-actions.h
@@ -1707,9 +1707,8 @@ template <size_t k>
1707
struct ReturnArgAction {
1708
template <typename... Args,
1709
typename = typename std::enable_if<(k < sizeof...(Args))>::type>
1710
- auto operator()(Args&&... args) const
1711
- -> decltype(std::get<k>(
1712
- std::forward_as_tuple(std::forward<Args>(args)...))) {
+ auto operator()(Args&&... args) const -> decltype(std::get<k>(
+ std::forward_as_tuple(std::forward<Args>(args)...))) {
1713
return std::get<k>(std::forward_as_tuple(std::forward<Args>(args)...));
1714
}
1715
};
0 commit comments