From b725ef4f12e882cde35efc612ca5aa5d55880780 Mon Sep 17 00:00:00 2001 From: PodlovchenkoDD Date: Sun, 27 Apr 2025 20:38:23 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D0=B1=D1=8A=D1=8F=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20minmax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- histogram_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/histogram_internal.h b/histogram_internal.h index ee7778f..0a08577 100644 --- a/histogram_internal.h +++ b/histogram_internal.h @@ -3,8 +3,8 @@ #include -std::vector -find_minmax(const std::vector& numbers, double& min, double& max); + +void find_minmax(const std::vector& numbers, double& min, double& max); #endif // HISTOGRAM_INTERNAL_H_INCLUDED