diff options
Diffstat (limited to 'tracker-pt')
| -rw-r--r-- | tracker-pt/module/camera.h | 2 | ||||
| -rw-r--r-- | tracker-pt/module/point_extractor.h | 2 | ||||
| -rw-r--r-- | tracker-pt/point_tracker.h | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/tracker-pt/module/camera.h b/tracker-pt/module/camera.h index 69b2f860..2ea633d0 100644 --- a/tracker-pt/module/camera.h +++ b/tracker-pt/module/camera.h @@ -56,7 +56,7 @@ private:      pt_settings s; -    static constexpr inline f dt_eps = f{1}/256; +    static constexpr f dt_eps = f{1}/256;  };  } // ns pt_module diff --git a/tracker-pt/module/point_extractor.h b/tracker-pt/module/point_extractor.h index 06948ac7..a6103667 100644 --- a/tracker-pt/module/point_extractor.h +++ b/tracker-pt/module/point_extractor.h @@ -36,7 +36,7 @@ public:      void extract_points(const pt_frame& frame, pt_preview& preview_frame, std::vector<vec2>& points) override;      PointExtractor(const QString& module_name);  private: -    static constexpr inline int max_blobs = 16; +    static constexpr int max_blobs = 16;      pt_settings s; diff --git a/tracker-pt/point_tracker.h b/tracker-pt/point_tracker.h index c39774cd..6f3e0cee 100644 --- a/tracker-pt/point_tracker.h +++ b/tracker-pt/point_tracker.h @@ -32,7 +32,7 @@ using namespace numeric_types;  struct PointModel final  { -    static constexpr inline unsigned N_POINTS = 3; +    static constexpr unsigned N_POINTS = 3;      vec3 M01;      // M01 in model frame      vec3 M02;      // M02 in model frame | 
