mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 12:06:01 +01:00
libstore: Add forward declarations for SandboxMode serializers
This is necessary to make libstore-tests for store configs work again.
This commit is contained in:
parent
a7fb257ec2
commit
28b74c3143
1 changed files with 5 additions and 0 deletions
|
|
@ -18,6 +18,11 @@ namespace nix {
|
|||
|
||||
typedef enum { smEnabled, smRelaxed, smDisabled } SandboxMode;
|
||||
|
||||
template<>
|
||||
SandboxMode BaseSetting<SandboxMode>::parse(const std::string & str) const;
|
||||
template<>
|
||||
std::string BaseSetting<SandboxMode>::to_string() const;
|
||||
|
||||
struct MaxBuildJobsSetting : public BaseSetting<unsigned int>
|
||||
{
|
||||
MaxBuildJobsSetting(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue