From 8b20298c960387c825cfd1476bcf0bc9119df58e Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Thu, 22 Aug 2024 16:48:22 -0500 Subject: [PATCH] Move pragma once in rolling/jit/operation.hpp. (#16636) I noticed from https://github.com/rapidsai/cudf/pull/16590#discussion_r1725842333 that there was one other file where `#pragma once` was not at the top. This PR fixes that. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: https://github.com/rapidsai/cudf/pull/16636 --- cpp/src/rolling/jit/operation.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/rolling/jit/operation.hpp b/cpp/src/rolling/jit/operation.hpp index f8a52c03d4e..3be739ec5bf 100644 --- a/cpp/src/rolling/jit/operation.hpp +++ b/cpp/src/rolling/jit/operation.hpp @@ -14,12 +14,12 @@ * limitations under the License. */ +#pragma once + #include "rolling/jit/operation-udf.hpp" #include -#pragma once - struct rolling_udf_ptx { template static OutType operate(InType const* in_col, cudf::size_type start, cudf::size_type count)