From b77d07a59353e9f084da912c7173e885a88a16b6 Mon Sep 17 00:00:00 2001
From: LykovaYA <LykovaYA@mpei.ru>
Date: Thu, 21 Nov 2024 21:28:18 +0300
Subject: [PATCH] =?UTF-8?q?build:=20=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB?=
 =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 histogram.cpp        | 2 +-
 histogram_internal.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/histogram.cpp b/histogram.cpp
index f23db86..45c959d 100644
--- a/histogram.cpp
+++ b/histogram.cpp
@@ -3,7 +3,7 @@
 #include "histogram.h"
 using namespace std;
 
-void
+bool
 find_minmax(const vector<double>& numbers, double& min, double& max) {
     min = numbers[0];
     for (size_t i = 1; i < numbers.size(); i++) {
diff --git a/histogram_internal.h b/histogram_internal.h
index 8179497..a512ac6 100644
--- a/histogram_internal.h
+++ b/histogram_internal.h
@@ -2,5 +2,5 @@
 
 #include <vector>
 
-void
+bool
 find_minmax(const std::vector<double>& numbers, double& min, double& max);