From 6adc996a0238b4927175707532610521ee8d42a0 Mon Sep 17 00:00:00 2001 From: unknown <KomarovYegA@mpei.ru> Date: Thu, 1 May 2025 17:46:01 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D1=83=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B0=20=D1=81=D1=82=D0=B0=D1=82=D0=B8=D1=87=D0=BD=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8=20fin?= =?UTF-8?q?d=5Fminmax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/histogram.cpp b/histogram.cpp index e5c32e6..ed33007 100644 --- a/histogram.cpp +++ b/histogram.cpp @@ -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){