diff options
Diffstat (limited to 'third_party/nix/src/libexpr/symbol-table.hh')
-rw-r--r-- | third_party/nix/src/libexpr/symbol-table.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/symbol-table.hh b/third_party/nix/src/libexpr/symbol-table.hh index 61a43ab978f4..8c27cf8ec723 100644 --- a/third_party/nix/src/libexpr/symbol-table.hh +++ b/third_party/nix/src/libexpr/symbol-table.hh @@ -54,7 +54,9 @@ class SymbolTable { template <typename T> void dump(T callback) { - for (auto& s : symbols) callback(s); + for (auto& s : symbols) { + callback(s); + } } }; |