diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-25 17:55:27 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-10-25 17:55:27 +0200 |
commit | 83867b413c449101bbe14615ff857a7785432ede (patch) | |
tree | 3b7a7fd68da8158a97fd67db9806fa6d984ebf80 /logic/pipeline.hpp | |
parent | 00cceaffca6063b963d0848480acaa99f5fecaad (diff) |
cleanup only
- replace warn_unused_result with [[nodiscard]]
- remove some redundant w_a_r
- replace std::decay with remove_cvref_t
- simplify compat/math.hpp
Diffstat (limited to 'logic/pipeline.hpp')
-rw-r--r-- | logic/pipeline.hpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/logic/pipeline.hpp b/logic/pipeline.hpp index 1cae6db4..91dfc668 100644 --- a/logic/pipeline.hpp +++ b/logic/pipeline.hpp @@ -59,15 +59,10 @@ public: void on_center(); - cc_warn_unused_result euler_t rotate(const rmat& rmat, const euler_t& in, vec3_bool disable) const; - - cc_warn_unused_result + euler_t apply_neck(const rmat& R, int nz, bool disable_tz) const; Pose apply_pipeline(reltrans_state state, const Pose& value, const vec6_bool& disable, bool neck_enable, int neck_z); - - cc_warn_unused_result - euler_t apply_neck(const rmat& R, int nz, bool disable_tz) const; }; using namespace time_units; |