From 241358083876ff1bbf696f5d754cdc3ced98bac5 Mon Sep 17 00:00:00 2001 From: conrad Date: Sat, 18 Sep 2021 00:25:21 +1000 Subject: [PATCH] remove TODOs --- include/armadillo_bits/subview_bones.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/armadillo_bits/subview_bones.hpp b/include/armadillo_bits/subview_bones.hpp index 7ed2f763..59c28c1f 100644 --- a/include/armadillo_bits/subview_bones.hpp +++ b/include/armadillo_bits/subview_bones.hpp @@ -168,8 +168,8 @@ class subview : public Base< eT, subview > inline subview rows(const uword in_row1, const uword in_row2); inline const subview rows(const uword in_row1, const uword in_row2) const; - inline subview cols(const uword in_col1, const uword in_col2); // TODO: change to output subview_cols - inline const subview cols(const uword in_col1, const uword in_col2) const; // TODO: change to output subview_cols + inline subview cols(const uword in_col1, const uword in_col2); + inline const subview cols(const uword in_col1, const uword in_col2) const; inline subview submat(const uword in_row1, const uword in_col1, const uword in_row2, const uword in_col2); inline const subview submat(const uword in_row1, const uword in_col1, const uword in_row2, const uword in_col2) const;