~ubuntu-branches/ubuntu/trusty/r-cran-rcpparmadillo/trusty-proposed

« back to all changes in this revision

Viewing changes to inst/include/armadillo_bits/unwrap.hpp

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2014-01-05 07:49:39 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20140105074939-dwxho57ujap094yj
Tags: 0.4.000-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
577
577
    arma_extra_debug_sigprint();
578
578
    }
579
579
  
580
 
  template<typename eT2>
 
580
  //template<typename eT2>
581
581
  inline
582
582
  unwrap_check_mixed(const T1& A, const bool)
583
583
    : M(A)
602
602
    arma_extra_debug_sigprint();
603
603
    }
604
604
  
605
 
  template<typename eT2>
 
605
  //template<typename eT2>
606
606
  inline
607
607
  unwrap_check_mixed(const Mat<eT1>& A, const bool is_alias)
608
608
    : M_local( is_alias ? new Mat<eT1>(A) : 0 )
640
640
    }
641
641
  
642
642
  
643
 
  template<typename eT2>
 
643
  //template<typename eT2>
644
644
  inline
645
645
  unwrap_check_mixed(const Row<eT1>& A, const bool is_alias)
646
646
    : M_local( is_alias ? new Row<eT1>(A) : 0 )
677
677
    arma_extra_debug_sigprint();
678
678
    }
679
679
  
680
 
  template<typename eT2>
 
680
  //template<typename eT2>
681
681
  inline
682
682
  unwrap_check_mixed(const Col<eT1>& A, const bool is_alias)
683
683
    : M_local( is_alias ? new Col<eT1>(A) : 0 )