[mlpack-git] master: Fix odd tabbing issue. (8928ba3)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Thu Mar 5 21:57:32 EST 2015


Repository : https://github.com/mlpack/mlpack

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/904762495c039e345beba14c1142fd719b3bd50e...f94823c800ad6f7266995c700b1b630d5ffdcf40

>---------------------------------------------------------------

commit 8928ba3f965c69fff2d9b70ee8d4b3b4bcda5be8
Author: Ryan Curtin <ryan at ratml.org>
Date:   Mon Aug 11 19:58:04 2014 +0000

    Fix odd tabbing issue.


>---------------------------------------------------------------

8928ba3f965c69fff2d9b70ee8d4b3b4bcda5be8
 src/mlpack/core/arma_extend/Mat_extra_meat.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mlpack/core/arma_extend/Mat_extra_meat.hpp b/src/mlpack/core/arma_extend/Mat_extra_meat.hpp
index 85585af..06b8084 100644
--- a/src/mlpack/core/arma_extend/Mat_extra_meat.hpp
+++ b/src/mlpack/core/arma_extend/Mat_extra_meat.hpp
@@ -87,7 +87,7 @@ Mat<eT>::const_row_col_iterator::operator++(int)
 template<typename eT>
 inline typename Mat<eT>::const_row_col_iterator&
 Mat<eT>::const_row_col_iterator::operator--()
-    {
+  {
   if(internal_row > 0)
     {
     current_pos--;
@@ -295,7 +295,7 @@ Mat<eT>::row_col_iterator::operator++(int)
 template<typename eT>
 inline typename Mat<eT>::row_col_iterator&
 Mat<eT>::row_col_iterator::operator--()
-    {
+  {
   if(internal_row != 0)
     {
     current_pos--;



More information about the mlpack-git mailing list