diff options
-rw-r--r-- | tracker-pt/module/camera.h | 2 | ||||
-rw-r--r-- | video/camera.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tracker-pt/module/camera.h b/tracker-pt/module/camera.h index 02e2fe4d..e2ba159f 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: - using camera = typename video::impl::camera; + using camera = video::impl::camera; [[nodiscard]] bool get_frame_(cv::Mat& frame); diff --git a/video/camera.hpp b/video/camera.hpp index 1cda8839..c08fedb1 100644 --- a/video/camera.hpp +++ b/video/camera.hpp @@ -87,7 +87,7 @@ void register_camera(std::unique_ptr<impl::camera_> metadata); namespace video { -using camera_impl = typename impl::camera; +using camera_impl = impl::camera; OTR_VIDEO_EXPORT std::unique_ptr<camera_impl> make_camera(const QString& name); |