From 32e918b37809d132fb71faefa7e06b7eea43565d Mon Sep 17 00:00:00 2001 From: jakirkham Date: Wed, 15 Jan 2025 07:38:33 -0800 Subject: [PATCH] Add missing `#include ` (#2540) This is needed to define `uint64_t` later on. Authors: - https://github.com/jakirkham Approvers: - Micka (https://github.com/lowener) URL: https://github.com/rapidsai/raft/pull/2540 --- cpp/include/raft/util/integer_utils.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/include/raft/util/integer_utils.hpp b/cpp/include/raft/util/integer_utils.hpp index 5224d5ac4c..7ea5a3d212 100644 --- a/cpp/include/raft/util/integer_utils.hpp +++ b/cpp/include/raft/util/integer_utils.hpp @@ -25,6 +25,7 @@ #include +#include #include #include #include