mirror of
https://github.com/NixOS/nix
synced 2025-06-25 14:51:16 +02:00
Remove pre-C++11 hackiness
This commit is contained in:
parent
762fa2b2ff
commit
9acc770ce4
6 changed files with 17 additions and 17 deletions
|
@ -419,8 +419,8 @@ struct ExprConcatStrings : Expr
|
|||
{
|
||||
PosIdx pos;
|
||||
bool forceString;
|
||||
std::vector<std::pair<PosIdx, Expr *> > * es;
|
||||
ExprConcatStrings(const PosIdx & pos, bool forceString, std::vector<std::pair<PosIdx, Expr *> > * es)
|
||||
std::vector<std::pair<PosIdx, Expr *>> * es;
|
||||
ExprConcatStrings(const PosIdx & pos, bool forceString, std::vector<std::pair<PosIdx, Expr *>> * es)
|
||||
: pos(pos), forceString(forceString), es(es) { };
|
||||
PosIdx getPos() const override { return pos; }
|
||||
COMMON_METHODS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue