Skip to content
Snippets Groups Projects
Commit 93c0e14a authored by regnat's avatar regnat
Browse files

Include the full nlohmann/json header in config.hh

It is apparently required for using `toJSONObject()`, which we do inside
the header file (because it's in a template).

This was accidentally working when building Nix itself (presumably because
`config.hh` was always included after `nlohman/json.hpp`) but caused a
(pretty dirty) build failure in the perl bindings package.
parent fc2d31c4
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include "types.hh" #include "types.hh"
#include <nlohmann/json_fwd.hpp> #include <nlohmann/json.hpp>
#pragma once #pragma once
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment