From 8669db1dcc9378bd61438e6c5978aea5d53d546f Mon Sep 17 00:00:00 2001 From: John Ericson Date: Sun, 10 Nov 2019 16:21:59 -0500 Subject: [PATCH] Clean up semicolon and comma Thanks @bhipple for catching! --- src/libstore/store-api.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index b860b48be..1862fa267 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -21,7 +21,7 @@ namespace nix { MakeError(SubstError, Error); -MakeError(BuildError, Error) /* denotes a permanent build failure */; +MakeError(BuildError, Error); // denotes a permanent build failure MakeError(InvalidPath, Error); MakeError(Unsupported, Error); MakeError(SubstituteGone, Error);