help-gplusplus
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

... where cfront would use ...


From: Peter Gunreben
Subject: ... where cfront would use ...
Date: Tue, 13 Jul 2004 15:06:51 +0200

Hi,

how can I get rid of the following warning:

==========%<=============
#include <vector>
#include <complex>

typedef std::complex<double> mycomplex;

int main() {

   std::vector<mycomplex> a(1);
   a[0] = mycomplex(2.,0.); // Here's the warning

   return(0);
}
==========%<=============

 g++ -W -Wall -Wsynth example.cc

example.cc: In function `int main()':
example.cc:10: warning: using synthesized
`std::complex<double>& std::complex<double>::operator=(const
std::complex<double>&)' for copy assignment
gcc/i686-pc-linux-gnu/3.4.1/../../../../include/c++/3.4.1/complex:998:
warning:   where cfront would use
`std::complex<double>& std::complex<double>::operator=(const
std::complex<_Tp>&) [with _Tp = double]'






reply via email to

[Prev in Thread] Current Thread [Next in Thread]