1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

use std::make_tuple

This commit is contained in:
Jeff Becker 2019-08-23 08:40:56 -04:00
parent 5f8388b1c0
commit 4ac07ea9fb
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -242,8 +242,8 @@ namespace llarp
if(key == "*")
{
m_OutboundLink = {"*", AF_INET, fromEnv(proto, "OUTBOUND_PORT"),
std::move(opts)};
m_OutboundLink = std::make_tuple(
"*", AF_INET, fromEnv(proto, "OUTBOUND_PORT"), std::move(opts));
}
else
{