mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Replace std::make_pair with std::pair CTAD (#7405)
This commit is contained in:
@@ -354,7 +354,7 @@ HttpLocation::HttpLocation(std::string_view url_, bool* error,
|
||||
return;
|
||||
}
|
||||
|
||||
params.emplace_back(std::make_pair(param, value));
|
||||
params.emplace_back(std::pair{param, value});
|
||||
}
|
||||
|
||||
*error = false;
|
||||
|
||||
Reference in New Issue
Block a user