| 770 | |
| 771 | template <typename T> |
| 772 | inline void GenerateBoundData(int num_values, T* out, T min, T max, |
| 773 | std::vector<uint8_t>* heap) { |
| 774 | // seed the prng so failure is deterministic |
| 775 | random_numbers(num_values, 0, min, max, out); |
| 776 | } |
| 777 | |
| 778 | template <> |
| 779 | inline void GenerateData<bool>(int num_values, bool* out, std::vector<uint8_t>* heap) { |
nothing calls this directly
no test coverage detected