diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-19 06:03:22 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-12-19 06:03:22 +0100 |
commit | 142c5409c4430f610f1d39f95b93404fb6099336 (patch) | |
tree | 2ffb4b8e27d2800cfadebf6ad85af8b449f37dd8 /logic/pipeline.cpp | |
parent | 33e8af395025704c5163e430d6af3c7ad4e3a4c1 (diff) |
logic/pipeline: fix evil typo breaking tracking
Diffstat (limited to 'logic/pipeline.cpp')
-rw-r--r-- | logic/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/pipeline.cpp b/logic/pipeline.cpp index cfff7680..3bdbc4ff 100644 --- a/logic/pipeline.cpp +++ b/logic/pipeline.cpp @@ -238,7 +238,7 @@ bool maybe_nan(const char* text, const char* fun, int line, const xs&... vals) if (ret) emit_nan_check_msg(text, fun, line); - return true; + return ret; } #define nan_check(...) \ |