From 93375fbd3cf328755074463d84bd381d99670591 Mon Sep 17 00:00:00 2001 From: Oskar Weigl Date: Sun, 28 Oct 2018 16:04:37 -0700 Subject: [PATCH] Fix copy-paste error --- test/slice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/slice.cpp b/test/slice.cpp index ee1da077d5..55d43f4036 100644 --- a/test/slice.cpp +++ b/test/slice.cpp @@ -31,7 +31,7 @@ int main() TEST(isEqual(B_colslice, B_check_colslice)); // Test slicing both - Matrix B_bothslice(A.slice<2, 2>(1, 1)); + Matrix B_bothslice(A.slice<2, 2>(1, 1)); float data_check_bothslice[4] = { 5, 6, 8, 10