mirror of
https://github.com/NixOS/nix.git
synced 2025-12-14 04:51:05 +01:00
`///@file` makes them show up in the internal API dos. A tiny few were missing `#pragma once`.
18 lines
243 B
C++
18 lines
243 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include <rapidcheck/gen/Arbitrary.h>
|
|
|
|
#include <outputs-spec.hh>
|
|
|
|
#include <tests/path.hh>
|
|
|
|
namespace rc {
|
|
using namespace nix;
|
|
|
|
template<>
|
|
struct Arbitrary<OutputsSpec> {
|
|
static Gen<OutputsSpec> arbitrary();
|
|
};
|
|
|
|
}
|