Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/gauxc/shell_pair.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace detail {
};

template <typename Integral>
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);
Expand Down