mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 19:20:28 +08:00
Merge pull request #24008 from iarspider:patch-1
test_houghlines: Fix C++20 compatibility
This commit is contained in:
commit
81f07f001e
@ -53,7 +53,7 @@ struct SimilarWith
|
|||||||
T value;
|
T value;
|
||||||
float theta_eps;
|
float theta_eps;
|
||||||
float rho_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);
|
bool operator()(const T& other);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user