Mercurial > hg > octave-lyh
comparison liboctave/fCRowVector.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 | 12df7854fa7c |
children | 72c96de7a403 |
comparison
equal
deleted
inserted
replaced
13105:3d7a4a2d9cef | 13107:353c71c76f22 |
---|---|
232 } | 232 } |
233 | 233 |
234 FloatComplexRowVector | 234 FloatComplexRowVector |
235 conj (const FloatComplexRowVector& a) | 235 conj (const FloatComplexRowVector& a) |
236 { | 236 { |
237 return do_mx_unary_map<FloatComplex, FloatComplex, std::conj> (a); | 237 return do_mx_unary_map<FloatComplex, FloatComplex, std::conj<float> > (a); |
238 } | 238 } |
239 | 239 |
240 // resize is the destructive equivalent for this one | 240 // resize is the destructive equivalent for this one |
241 | 241 |
242 FloatComplexRowVector | 242 FloatComplexRowVector |