mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 06:56:14 +02:00
16 lines
186 B
C++
16 lines
186 B
C++
|
#pragma once
|
||
|
|
||
|
#include <rapidcheck/gen/Arbitrary.h>
|
||
|
|
||
|
#include <hash.hh>
|
||
|
|
||
|
namespace rc {
|
||
|
using namespace nix;
|
||
|
|
||
|
template<>
|
||
|
struct Arbitrary<Hash> {
|
||
|
static Gen<Hash> arbitrary();
|
||
|
};
|
||
|
|
||
|
}
|