From 0237d1bb015cfe26a65340b3171fd56f9b734dfe Mon Sep 17 00:00:00 2001 From: Danila Date: Sun, 23 Apr 2023 22:27:15 +0300 Subject: [PATCH] =?UTF-8?q?code:=20c=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=20?= =?UTF-8?q?=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D1=8E=20"find=5Fmax"=20?= =?UTF-8?q?=D1=81=D1=82=D0=B8=D1=82=D0=B8=D1=87=D0=B5=D1=81=D0=BA=D0=BE?= =?UTF-8?q?=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/histogram.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/histogram.cpp b/project/histogram.cpp index 8913643..c4ed2b9 100644 --- a/project/histogram.cpp +++ b/project/histogram.cpp @@ -4,7 +4,7 @@ using namespace std; -void find_minmax(vector numbers, double& min, double& max) +static void find_minmax(vector numbers, double& min, double& max) { min = numbers[0]; max = numbers[0];