From 3bf6026be1420e29e394c7c0724b1a6310ea9a38 Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Thu, 19 Dec 2024 10:22:42 -0500 Subject: [PATCH] Add missing array header include (#1771) When stack trace is enabled we would run into compile failures since `array.h` wasn't explicitly included. We only work currently due to other headers bringing this include in. Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/rmm/pull/1771 --- include/rmm/detail/stack_trace.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/rmm/detail/stack_trace.hpp b/include/rmm/detail/stack_trace.hpp index 7b3d40bd2..0886ceb51 100644 --- a/include/rmm/detail/stack_trace.hpp +++ b/include/rmm/detail/stack_trace.hpp @@ -32,6 +32,7 @@ #include #include +#include #include #include #include