mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 11:10:21 +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;
|
||||
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…
Reference in New Issue
Block a user