1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 20:16:03 +01:00

Merge pull request #13824 from xokdvium/fix-formatting

libexpr: Fix weird formatting after treewide reformat
This commit is contained in:
John Ericson 2025-08-25 15:26:17 -04:00 committed by GitHub
commit fac34ad20f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -595,12 +595,17 @@ struct ExprOpNot : Expr
{ \ { \
return pos; \ return pos; \
} \ } \
}; }
MakeBinOp(ExprOpEq, "==") MakeBinOp(ExprOpNEq, "!=") MakeBinOp(ExprOpAnd, "&&") MakeBinOp(ExprOpOr, "||") MakeBinOp(ExprOpEq, "==");
MakeBinOp(ExprOpImpl, "->") MakeBinOp(ExprOpUpdate, "//") MakeBinOp(ExprOpConcatLists, "++") MakeBinOp(ExprOpNEq, "!=");
MakeBinOp(ExprOpAnd, "&&");
MakeBinOp(ExprOpOr, "||");
MakeBinOp(ExprOpImpl, "->");
MakeBinOp(ExprOpUpdate, "//");
MakeBinOp(ExprOpConcatLists, "++");
struct ExprConcatStrings : Expr struct ExprConcatStrings : Expr
{ {
PosIdx pos; PosIdx pos;
bool forceString; bool forceString;