forked from lix-project/lix
Format
Co-authored-by: Eelco Dolstra <edolstra@gmail.com> Co-authored-by: John Ericson <git@JohnEricson.me>
This commit is contained in:
parent
4e0804c920
commit
9c74df5bb4
|
@ -3,7 +3,8 @@
|
|||
namespace nix {
|
||||
|
||||
std::ostream &
|
||||
printLiteral(std::ostream & str, const std::string_view string) {
|
||||
printLiteral(std::ostream & str, const std::string_view string)
|
||||
{
|
||||
str << "\"";
|
||||
for (auto i = string.begin(); i != string.end(); ++i) {
|
||||
if (*i == '\"' || *i == '\\') str << "\\" << *i;
|
||||
|
@ -18,7 +19,8 @@ printLiteral(std::ostream & str, const std::string_view string) {
|
|||
}
|
||||
|
||||
std::ostream &
|
||||
printLiteral(std::ostream & str, bool boolean) {
|
||||
printLiteral(std::ostream & str, bool boolean)
|
||||
{
|
||||
str << (boolean ? "true" : "false");
|
||||
return str;
|
||||
}
|
||||
|
|
|
@ -314,7 +314,7 @@ Derivation parseDerivation(const Store & store, std::string && s, std::string_vi
|
|||
|
||||
|
||||
/**
|
||||
* Print a derivation string literal to an std::string.
|
||||
* Print a derivation string literal to an `std::string`.
|
||||
*
|
||||
* This syntax does not generalize to the expression language, which needs to
|
||||
* escape `$`.
|
||||
|
|
Loading…
Reference in a new issue