From c4603056b8e7a33715468518b233fbaadaf22535 Mon Sep 17 00:00:00 2001 From: Michael Tsukanov Date: Mon, 6 May 2024 17:26:46 +0300 Subject: [PATCH] Add missing '#include ' Compilation was failing due to missing include --- src/core/algorithms/statistics/data_stats.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/algorithms/statistics/data_stats.h b/src/core/algorithms/statistics/data_stats.h index bf566bcd75..f9939a6b42 100644 --- a/src/core/algorithms/statistics/data_stats.h +++ b/src/core/algorithms/statistics/data_stats.h @@ -1,5 +1,7 @@ #pragma once +#include + #include "algorithms/fd/fd_algorithm.h" #include "algorithms/statistics/statistic.h" #include "config/equal_nulls/type.h"