diff options
Diffstat (limited to 'third_party/nix/src/libexpr/symbol-table.hh')
-rw-r--r-- | third_party/nix/src/libexpr/symbol-table.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/symbol-table.hh b/third_party/nix/src/libexpr/symbol-table.hh index c4c1163bed15..efc2314b75e8 100644 --- a/third_party/nix/src/libexpr/symbol-table.hh +++ b/third_party/nix/src/libexpr/symbol-table.hh @@ -21,7 +21,7 @@ class Symbol { bool operator<(const Symbol& s2) const { return *s < *s2.s; } - operator const std::string&() const { return *s; } + operator const std::string &() const { return *s; } bool set() const { return s; } |