aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/repl.cc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2023-02-21 09:38:46 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2023-02-21 09:38:46 -0500
commit5b0175e81d3fedb27c304f7847cb1bbd11d481c4 (patch)
tree51680cc6ff7049c2d77f4906e6d793552d0d7814 /src/libcmd/repl.cc
parent532c70f531a0b61eb0ad506497209e302b8250f3 (diff)
Fix the build without GC
I had given it an improper trailing comma in 1bd03ad100e8813751b6c08b0c21ae8cf5a9c21d.
Diffstat (limited to 'src/libcmd/repl.cc')
-rw-r--r--src/libcmd/repl.cc4
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;