aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/json-to-value.hh
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2019-11-10 11:14:26 -0500
committerJohn Ericson <git@JohnEricson.me>2019-11-10 11:24:47 -0500
commit96e6e680c1a298613756571e4984c340ce887c2a (patch)
tree53e33aa356c6a8766c460f2fe9b74b30891e5577 /src/libexpr/json-to-value.hh
parent70cab0587dcbc2d0600c07c96b477a2ea2fcd6f3 (diff)
Fix extra ; warnings involving MakeError
Diffstat (limited to 'src/libexpr/json-to-value.hh')
-rw-r--r--src/libexpr/json-to-value.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/json-to-value.hh b/src/libexpr/json-to-value.hh
index 33f35b16c..3b0fdae11 100644
--- a/src/libexpr/json-to-value.hh
+++ b/src/libexpr/json-to-value.hh
@@ -6,7 +6,7 @@
namespace nix {
-MakeError(JSONParseError, EvalError)
+MakeError(JSONParseError, EvalError);
void parseJSON(EvalState & state, const string & s, Value & v);