diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-02-21 09:38:46 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-02-21 09:38:46 -0500 |
commit | 5b0175e81d3fedb27c304f7847cb1bbd11d481c4 (patch) | |
tree | 51680cc6ff7049c2d77f4906e6d793552d0d7814 | |
parent | 532c70f531a0b61eb0ad506497209e302b8250f3 (diff) |
Fix the build without GC
I had given it an improper trailing comma in
1bd03ad100e8813751b6c08b0c21ae8cf5a9c21d.
-rw-r--r-- | src/libcmd/repl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcmd/repl.cc b/src/libcmd/repl.cc index 7c7d13659..e3afb1531 100644 --- a/src/libcmd/repl.cc +++ b/src/libcmd/repl.cc @@ -49,9 +49,9 @@ extern "C" { namespace nix { struct NixRepl - : AbstractNixRepl, + : AbstractNixRepl #if HAVE_BOEHMGC - gc + , gc #endif { std::string curDir; |