about summary refs log tree commit diff
path: root/third_party/nix/src/libexpr/value-to-json.hh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/libexpr/value-to-json.hh')
-rw-r--r--third_party/nix/src/libexpr/value-to-json.hh17
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 67fed6487d..62708e4751 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