From 04f2d46c51004e7b821ecf2988bdd7b8b95ddf5a Mon Sep 17 00:00:00 2001 From: Anush V Kini Date: Fri, 13 Nov 2020 19:25:25 +0530 Subject: [PATCH] Removed unused variables in a test case --- src/mlpack/tests/main_tests/preprocess_split_test.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mlpack/tests/main_tests/preprocess_split_test.cpp b/src/mlpack/tests/main_tests/preprocess_split_test.cpp index 12ed84af10..16dc039157 100644 --- a/src/mlpack/tests/main_tests/preprocess_split_test.cpp +++ b/src/mlpack/tests/main_tests/preprocess_split_test.cpp @@ -343,10 +343,6 @@ TEST_CASE_METHOD( if (!data::Load("vc2_labels.txt", labels)) FAIL("Unable to load label dataset vc2_labels.txt!"); - // Store size of input dataset. - int inputSize = inputData.n_cols; - int labelSize = labels.n_cols; - // Input custom data points and labels. SetInputParam("input", std::move(inputData)); SetInputParam("input_labels", std::move(labels));