diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-11-11 12:13:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-11 12:13:51 +0100 |
commit | 5ee23c35b9db79e1ce3a8954e91a7c18d295d917 (patch) | |
tree | 252d68924f3249e68b07f058b82243cbb2b12f4b /src/libstore | |
parent | 1f174226d167c72b272d58d89560d32fa75f1654 (diff) | |
parent | 8669db1dcc9378bd61438e6c5978aea5d53d546f (diff) |
Merge pull request #3219 from Ericson2314/semicolons
Fix extra semicolons warnings
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/build.cc | 2 | ||||
-rw-r--r-- | src/libstore/store-api.hh | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index c82f60748..35a5388c6 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1515,7 +1515,7 @@ void replaceValidPath(const Path & storePath, const Path tmpPath) } -MakeError(NotDeterministic, BuildError) +MakeError(NotDeterministic, BuildError); void DerivationGoal::buildDone() diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index e9e6e0dd2..ec32e995d 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -20,12 +20,12 @@ namespace nix { -MakeError(SubstError, Error) -MakeError(BuildError, Error) /* denotes a permanent build failure */ -MakeError(InvalidPath, Error) -MakeError(Unsupported, Error) -MakeError(SubstituteGone, Error) -MakeError(SubstituterDisabled, Error) +MakeError(SubstError, Error); +MakeError(BuildError, Error); // denotes a permanent build failure +MakeError(InvalidPath, Error); +MakeError(Unsupported, Error); +MakeError(SubstituteGone, Error); +MakeError(SubstituterDisabled, Error); struct BasicDerivation; |