From 89569c25047a5c6a8fb48d4938d1235ca18e3420 Mon Sep 17 00:00:00 2001 From: David Hall Date: Tue, 11 Feb 2020 14:23:17 -0600 Subject: [PATCH] MCOL-3784 Add boost/scoped_ptr.hpp to rowaggregation.h We were inadvertantly relying on boost/regex.hpp to include boost/scoped_ptr.hpp. When we removed boost regex, we lost scoped_ptr too. --- utils/rowgroup/rowaggregation.h | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/rowgroup/rowaggregation.h b/utils/rowgroup/rowaggregation.h index 17e903f3f..aeb7dbf53 100644 --- a/utils/rowgroup/rowaggregation.h +++ b/utils/rowgroup/rowaggregation.h @@ -42,6 +42,7 @@ #include #include #include +#include #include "serializeable.h" #include "bytestream.h"