Merge pull request #24008 from iarspider:patch-1

test_houghlines: Fix C++20 compatibility
pull/24026/head
Alexander Smorkalov 1 year ago committed by GitHub
commit 81f07f001e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/imgproc/test/test_houghlines.cpp

@ -53,7 +53,7 @@ struct SimilarWith
T value;
float theta_eps;
float rho_eps;
SimilarWith<T>(T val, float e, float r_e): value(val), theta_eps(e), rho_eps(r_e) { };
SimilarWith(T val, float e, float r_e): value(val), theta_eps(e), rho_eps(r_e) { };
bool operator()(const T& other);
};

Loading…
Cancel
Save