mirror of
https://github.com/NixOS/nix.git
synced 2025-11-13 22:12:43 +01:00
Use BackedStringView
This commit is contained in:
parent
a3cf27ca47
commit
1fe8f54bd3
2 changed files with 2 additions and 2 deletions
|
|
@ -153,7 +153,7 @@ struct FdSource : BufferedSource
|
|||
{
|
||||
int fd;
|
||||
size_t read = 0;
|
||||
std::string endOfFileError{"unexpected end-of-file"};
|
||||
BackedStringView endOfFileError{"unexpected end-of-file"};
|
||||
|
||||
FdSource() : fd(-1) { }
|
||||
FdSource(int fd) : fd(fd) { }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue