1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-28 21:21:00 +01:00

Fix include errors masked by precompiled headers

This commit is contained in:
John Ericson 2025-11-26 18:43:32 -05:00
parent 1e36f203e6
commit 80c545bcdc

View file

@ -16,6 +16,7 @@
#include "nix/util/configuration.hh" #include "nix/util/configuration.hh"
#include "nix/util/args.hh" #include "nix/util/args.hh"
#include "nix/util/logging.hh" #include "nix/util/logging.hh"
#include "nix/util/file-path.hh"
namespace nix { namespace nix {
@ -135,6 +136,7 @@ DECLARE_CONFIG_SERIALISER(StringSet)
DECLARE_CONFIG_SERIALISER(StringMap) DECLARE_CONFIG_SERIALISER(StringMap)
DECLARE_CONFIG_SERIALISER(std::set<ExperimentalFeature>) DECLARE_CONFIG_SERIALISER(std::set<ExperimentalFeature>)
DECLARE_CONFIG_SERIALISER(std::filesystem::path) DECLARE_CONFIG_SERIALISER(std::filesystem::path)
DECLARE_CONFIG_SERIALISER(std::optional<std::filesystem::path>)
template<typename T> template<typename T>
T BaseSetting<T>::parse(const std::string & str) const T BaseSetting<T>::parse(const std::string & str) const