Invocations of the MakeError macro that were not followed by a semicolon messed up indentation in the next lines. Change-Id: I03d7d1443f062a38af2c7da3da8928e0ed05e274 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1708 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
13 lines
204 B
C++
13 lines
204 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "libexpr/eval.hh"
|
|
|
|
namespace nix {
|
|
|
|
MakeError(JSONParseError, EvalError);
|
|
|
|
void parseJSON(EvalState& state, const std::string& s, Value& v);
|
|
|
|
} // namespace nix
|