From ce14434c9ea866a00c2de1e180dba6c477e2d61a Mon Sep 17 00:00:00 2001 From: Victoriya Fedotova Date: Fri, 27 Oct 2023 17:39:20 +0200 Subject: [PATCH] Fix "no type named 'uint32_t'" failure in ICX build (#2561) * Fix a failure in ICX build: Replace 'std::uint32_t', 'std::int64_t' with 'uint32_t', 'int64_t' * Add and includes into algorithm_types.hpp * Remove from algorithm_types.hpp --- cpp/daal/include/algorithms/algorithm_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/daal/include/algorithms/algorithm_types.h b/cpp/daal/include/algorithms/algorithm_types.h index 20d2cb53c60..94555377a22 100644 --- a/cpp/daal/include/algorithms/algorithm_types.h +++ b/cpp/daal/include/algorithms/algorithm_types.h @@ -30,6 +30,7 @@ #include "data_management/data/data_collection.h" #include "services/error_handling.h" #include "services/daal_shared_ptr.h" +#include namespace daal {