diff options
Diffstat (limited to 'logic')
-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...); |