Files
lix/tests/unit/libutil-support/tests/hash.hh
T
Jade Lovelace 103cd44a04 Include rearrangement: rest
Change-Id: If9b5502ff348d358d7007b885e26e98a0d228f39
2024-11-18 12:31:19 -08:00

17 lines
207 B
C++

#pragma once
///@file
#include <rapidcheck/gen/Arbitrary.h>
#include "lix/libutil/hash.hh"
namespace rc {
using namespace nix;
template<>
struct Arbitrary<Hash> {
static Gen<Hash> arbitrary();
};
}