diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-02 08:14:54 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-02 08:21:36 +0100 |
commit | 398894b546fb6588049e889678943c124a90ec24 (patch) | |
tree | b5db21f64a01c5e6d27920052e022728e9678611 /tracker-pt/camera.cpp | |
parent | b830658e3e1657de1ef8581a53b4298769c117ee (diff) |
compat/macros: rename obnoxious macro
Diffstat (limited to 'tracker-pt/camera.cpp')
-rw-r--r-- | tracker-pt/camera.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tracker-pt/camera.cpp b/tracker-pt/camera.cpp index e2bcc4b9..f218a6d6 100644 --- a/tracker-pt/camera.cpp +++ b/tracker-pt/camera.cpp @@ -36,14 +36,14 @@ double CamInfo::get_focal_length() const //static bool once = false; if (!once) { once = true; qDebug() << "f" << ret << "fov" << (fov * 180/M_PI); } } -DEFUN_WARN_UNUSED Camera::result Camera::get_info() const +warn_result_unused Camera::result Camera::get_info() const { if (cam_info.res_x == 0 || cam_info.res_y == 0) return result(false, CamInfo()); return result(true, cam_info); } -DEFUN_WARN_UNUSED Camera::result Camera::get_frame(cv::Mat& frame) +warn_result_unused Camera::result Camera::get_frame(cv::Mat& frame) { const bool new_frame = _get_frame(frame); @@ -72,7 +72,7 @@ DEFUN_WARN_UNUSED Camera::result Camera::get_frame(cv::Mat& frame) return result(false, CamInfo()); } -DEFUN_WARN_UNUSED Camera::open_status Camera::start(int idx, int fps, int res_x, int res_y) +warn_result_unused Camera::open_status Camera::start(int idx, int fps, int res_x, int res_y) { if (idx >= 0 && fps >= 0 && res_x >= 0 && res_y >= 0) { @@ -135,7 +135,7 @@ void Camera::stop() cam_desired = CamInfo(); } -DEFUN_WARN_UNUSED bool Camera::_get_frame(cv::Mat& frame) +warn_result_unused bool Camera::_get_frame(cv::Mat& frame) { if (cap && cap->isOpened()) { |