diff options
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-json.hh')
-rw-r--r-- | third_party/nix/src/libexpr/value-to-json.hh | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/third_party/nix/src/libexpr/value-to-json.hh b/third_party/nix/src/libexpr/value-to-json.hh index 67fed6487dd9..62708e4751dd 100644 --- a/third_party/nix/src/libexpr/value-to-json.hh +++ b/third_party/nix/src/libexpr/value-to-json.hh @@ -1,19 +1,18 @@ #pragma once -#include "nixexpr.hh" -#include "eval.hh" - -#include <string> #include <map> +#include <string> +#include "eval.hh" +#include "nixexpr.hh" namespace nix { class JSONPlaceholder; -void printValueAsJSON(EvalState & state, bool strict, - Value & v, JSONPlaceholder & out, PathSet & context); +void printValueAsJSON(EvalState& state, bool strict, Value& v, + JSONPlaceholder& out, PathSet& context); -void printValueAsJSON(EvalState & state, bool strict, - Value & v, std::ostream & str, PathSet & context); +void printValueAsJSON(EvalState& state, bool strict, Value& v, + std::ostream& str, PathSet& context); -} +} // namespace nix |