diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-07 00:55:59 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-07 00:55:59 +0200 |
commit | 9a881ac796dd46b4bdde7f48d8003160c2242c2d (patch) | |
tree | 82f37aee29046c2adce979a1ee1268c470f7276e /logic/pipeline.cpp | |
parent | 329a0e5a8d1d275fa7fa5533c8327139fc37e1ab (diff) |
fix GCC build errors
Issue: #726
Diffstat (limited to 'logic/pipeline.cpp')
-rw-r--r-- | logic/pipeline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<u,w>& r) } template<typename x> -static cc_forceinline +static inline bool nan_check_(const x& datum) { return is_nan(datum); } template<typename x, typename y, typename... xs> -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...); |