@ -1,6 +1,6 @@
#include "histogram.h"
static void find_minmax(const std::vector<double>& numbers, double& min, double& max) {
void find_minmax(const std::vector<double>& numbers, double& min, double& max) {
min = numbers[0];
max = numbers[0];
for (double x : numbers){