diff options
author | John Ericson <git@JohnEricson.me> | 2019-11-10 16:21:59 -0500 |
---|---|---|
committer | John Ericson <git@JohnEricson.me> | 2019-11-10 16:21:59 -0500 |
commit | 8669db1dcc9378bd61438e6c5978aea5d53d546f (patch) | |
tree | 10e5b65298c28b010ef5651d28f26d7d4aec85cf | |
parent | 4c34054673edd67cd1cfd81ab2972f27e518c78a (diff) |
Clean up semicolon and comma
Thanks @bhipple for catching!
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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); |