diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh index dfe25f31726..50cdf9ffe9d 100644 --- a/src/libstore/globals.hh +++ b/src/libstore/globals.hh @@ -16,6 +16,11 @@ namespace nix { typedef enum { smEnabled, smRelaxed, smDisabled } SandboxMode; +template<> SandboxMode BaseSetting::parse(const std::string & str) const; +template<> struct BaseSetting::trait; +template<> std::string BaseSetting::to_string() const; +template<> void BaseSetting::convertToArg(Args & args, const std::string & category); + struct MaxBuildJobsSetting : public BaseSetting { MaxBuildJobsSetting(Config * options,