Browse Source
Merge pull request #4315 from lioncash/udp-warn
udp: Silence a C++20 deprecation warning
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/input_common/udp/client.cpp
|
|
|
@ -234,7 +234,7 @@ CalibrationConfigurationJob::CalibrationConfigurationJob( |
|
|
|
std::function<void(Status)> status_callback, |
|
|
|
std::function<void(u16, u16, u16, u16)> data_callback) { |
|
|
|
|
|
|
|
std::thread([=] { |
|
|
|
std::thread([=, this] { |
|
|
|
constexpr u16 CALIBRATION_THRESHOLD = 100; |
|
|
|
|
|
|
|
u16 min_x{UINT16_MAX}; |
|
|
|
|