From 9a881ac796dd46b4bdde7f48d8003160c2242c2d Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 7 Oct 2018 00:55:59 +0200 Subject: fix GCC build errors Issue: #726 --- logic/pipeline.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'logic/pipeline.cpp') diff --git a/logic/pipeline.cpp b/logic/pipeline.cpp index 4ebfedc8..c701a815 100644 --- a/logic/pipeline.cpp +++ b/logic/pipeline.cpp @@ -215,14 +215,14 @@ static bool is_nan(const dmat& r) } template -static cc_forceinline +static inline bool nan_check_(const x& datum) { return is_nan(datum); } template -static cc_forceinline +static inline bool nan_check_(const x& datum, const y& next, const xs&... rest) { return nan_check_(datum) || nan_check_(next, rest...); -- cgit v1.2.3