comparison liboctave/CMatrix.cc @ 13107:353c71c76f22

maint: fix compilation problem with g++ -std=c++0x option * CColVector.cc (conj): Tag std::conj with <double>. * CMatrix.cc (conj): Tag std::conj with <double>. * CNDArray.cc (conj): Tag std::conj with <double>. * CRowVector.cc (conj): Tag std::conj with <double>. * fCColVector.cc (conj): Tag std::conj with <float>. * fCMatrix.cc (conj): Tag std::conj with <float>. * fCNDArray.cc (conj): Tag std::conj with <float>. * fCRowVector.cc (conj): Tag std::conj with <float>. * ov-cx-sparse.cc (conj): Tag std::conj with <double>.
author Júlio Hoffimann <julio.hoffimann@gmail.com>
date Tue, 06 Sep 2011 14:58:44 -0400
parents a9cf422ed849
children f1b023fd098d
comparison
equal deleted inserted replaced
13105:3d7a4a2d9cef 13107:353c71c76f22
919 } 919 }
920 920
921 ComplexMatrix 921 ComplexMatrix
922 conj (const ComplexMatrix& a) 922 conj (const ComplexMatrix& a)
923 { 923 {
924 return do_mx_unary_map<Complex, Complex, std::conj> (a); 924 return do_mx_unary_map<Complex, Complex, std::conj<double> > (a);
925 } 925 }
926 926
927 // resize is the destructive equivalent for this one 927 // resize is the destructive equivalent for this one
928 928
929 ComplexMatrix 929 ComplexMatrix