From eb77850a5b372f900adb447e341b5b018a25f684 Mon Sep 17 00:00:00 2001 From: Jonathon Misiewicz Date: Tue, 29 Apr 2025 11:18:25 -0400 Subject: [PATCH] Update shell_pair.hpp --- include/gauxc/shell_pair.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gauxc/shell_pair.hpp b/include/gauxc/shell_pair.hpp index 55cb4465..e3288198 100644 --- a/include/gauxc/shell_pair.hpp +++ b/include/gauxc/shell_pair.hpp @@ -19,7 +19,7 @@ namespace detail { }; template - inline intmax_t csr_index( size_t i, size_t j, Integral* row_ptr, Integral* col_ind ) { + inline std::intmax_t csr_index( size_t i, size_t j, Integral* row_ptr, Integral* col_ind ) { const auto j_st = col_ind + row_ptr[i]; const auto j_en = col_ind + row_ptr[i+1]; auto it = std::lower_bound(j_st, j_en, j);