From 5b8bc19dc5579b7489c1986874a112a6d3d4599b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Zatloukal?= Date: Tue, 18 Jan 2022 20:47:41 +0100 Subject: [PATCH] 'std::unique_ptr' is defined in header '' Fixes GCC 12 build. Signed-off-by: Frantisek Zatloukal --- shared/generate_cpp_array/source/generate_cpp_array.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shared/generate_cpp_array/source/generate_cpp_array.cpp b/shared/generate_cpp_array/source/generate_cpp_array.cpp index b2220a4852..0179b6fb20 100644 --- a/shared/generate_cpp_array/source/generate_cpp_array.cpp +++ b/shared/generate_cpp_array/source/generate_cpp_array.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020-2021 Intel Corporation + * Copyright (C) 2020-2022 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -8,6 +8,7 @@ #include #include #include +#include #include constexpr int MIN_ARG_COUNT = 7;