mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
util: Work around ParseHex gcc cross compiler bug
This commit is contained in:
parent
5e1aab2334
commit
fa8481b05f
1 changed files with 2 additions and 2 deletions
|
|
@ -95,8 +95,8 @@ std::optional<std::vector<Byte>> TryParseHex(std::string_view str)
|
|||
}
|
||||
return vch;
|
||||
}
|
||||
template std::vector<std::byte> ParseHex(std::string_view);
|
||||
template std::vector<uint8_t> ParseHex(std::string_view);
|
||||
template std::optional<std::vector<std::byte>> TryParseHex(std::string_view);
|
||||
template std::optional<std::vector<uint8_t>> TryParseHex(std::string_view);
|
||||
|
||||
bool SplitHostPort(std::string_view in, uint16_t& portOut, std::string& hostOut)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue