From 5b0175e81d3fedb27c304f7847cb1bbd11d481c4 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 21 Feb 2023 09:38:46 -0500 Subject: [PATCH] Fix the build without GC I had given it an improper trailing comma in 1bd03ad100e8813751b6c08b0c21ae8cf5a9c21d. --- src/libcmd/repl.cc | 4 ++-- 1 file 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;