From dd7e36bfdb45cafbb4530d4f337cb693baa794f7 Mon Sep 17 00:00:00 2001 From: ginkgo-bot Date: Sun, 11 Apr 2021 09:27:05 +0000 Subject: [PATCH] Format files Co-authored-by: Terry Cojean --- include/ginkgo/core/base/executor.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ginkgo/core/base/executor.hpp b/include/ginkgo/core/base/executor.hpp index e69cf883e13..baeea6b7d63 100644 --- a/include/ginkgo/core/base/executor.hpp +++ b/include/ginkgo/core/base/executor.hpp @@ -342,7 +342,7 @@ private: \ ::gko::syn::as_list<::gko::syn::range<0, sizeof...(Args)>>; \ \ public: \ - explicit _name##_operation(Args &&...args) \ + explicit _name##_operation(Args &&... args) \ : data(std::forward(args)...) \ {} \ \ @@ -368,7 +368,7 @@ private: \ }; \ \ template \ - static _name##_operation make_##_name(Args &&...args) \ + static _name##_operation make_##_name(Args &&... args) \ { \ return _name##_operation(std::forward(args)...); \ } \