mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-26 07:46:21 +02:00
fmt(): Handle std::string_view
This commit is contained in:
parent
50aae0a14c
commit
581693bdea
1 changed files with 5 additions and 0 deletions
|
@ -44,6 +44,11 @@ inline std::string fmt(const std::string & s)
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline std::string fmt(std::string_view s)
|
||||||
|
{
|
||||||
|
return std::string(s);
|
||||||
|
}
|
||||||
|
|
||||||
inline std::string fmt(const char * s)
|
inline std::string fmt(const char * s)
|
||||||
{
|
{
|
||||||
return s;
|
return s;
|
||||||
|
|
Loading…
Reference in a new issue