mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 15:04:44 +01:00
refactor: Remove no longer needed clang-15 workaround for std::span
This commit is contained in:
parent
9999dbc1bd
commit
fa8f53273c
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ public:
|
||||||
*/
|
*/
|
||||||
void WriteReply(int nStatus, std::string_view reply = "")
|
void WriteReply(int nStatus, std::string_view reply = "")
|
||||||
{
|
{
|
||||||
WriteReply(nStatus, std::as_bytes(std::span{reply.data(), reply.size()}));
|
WriteReply(nStatus, std::as_bytes(std::span{reply}));
|
||||||
}
|
}
|
||||||
void WriteReply(int nStatus, std::span<const std::byte> reply);
|
void WriteReply(int nStatus, std::span<const std::byte> reply);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue