Skip to content

Commit 3cba0ab

Browse files
committed
Try fixing compilation error.
1 parent 6287fc0 commit 3cba0ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plssvm/svm/csvm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ std::pair<std::vector<real_type>, real_type> csvm::perform_dimensional_reduction
228228

229229
const std::chrono::steady_clock::time_point dimension_reduction_start_time = std::chrono::steady_clock::now();
230230

231-
const detail::ssize_t num_rows_reduced = static_cast<ssize_t>(A.num_rows() - 1);
231+
const auto num_rows_reduced = static_cast<detail::ssize_t>(A.num_rows() - 1);
232232

233233
// create q_red vector and calculate QA_costs
234234
std::vector<real_type> q_red(num_rows_reduced);

0 commit comments

Comments
 (0)