From b5399ee9618124c032a0bbd7513014dca2ba2ca0 Mon Sep 17 00:00:00 2001 From: SavinSA Date: Sun, 21 Apr 2024 19:57:32 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=20=D1=82=D0=B8=D0=BF=20=D1=84=D1=83=D0=BD?= =?UTF-8?q?=D0=BA=D1=86=D0=B8=D0=B8=20minmax?= 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 4c759c6..0c26cb0 100644 --- a/histogram.cpp +++ b/histogram.cpp @@ -3,7 +3,7 @@ #include using namespace std; -void +static void find_minmax(const vector& numbers, double& min, double& max) { min = numbers[0]; max = numbers[0];