From 83867b413c449101bbe14615ff857a7785432ede Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 25 Oct 2018 17:55:27 +0200 Subject: 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 --- tracker-pt/module/camera.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tracker-pt/module') diff --git a/tracker-pt/module/camera.h b/tracker-pt/module/camera.h index f3f88cc5..f8f140de 100644 --- a/tracker-pt/module/camera.h +++ b/tracker-pt/module/camera.h @@ -37,7 +37,7 @@ struct Camera final : pt_camera void show_camera_settings() override; private: - cc_warn_unused_result bool _get_frame(cv::Mat& Frame); + [[nodiscard]] bool _get_frame(cv::Mat& Frame); double dt_mean = 0, fov = 30; Timer t; @@ -56,7 +56,7 @@ private: pt_settings s; - static constexpr inline double dt_eps = 1./384; + static constexpr inline double dt_eps = 1./256; }; } // ns pt_module -- cgit v1.2.3