Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 4.3.1
-
None
-
Ubuntu Linux 16.04 x64, GDB 7.11.1
-
376b1f32dc683bf34ab9cf81e95745cae3adfbe1
Description
There is no expand triangle for std::complex<float> types. You only see (1.0, 2.0) as value and can therefore not change the value.
#include <complex> #include <iostream> int main() { std::complex<float> a(1, 2); std::complex<float> b(3, 4); auto c = a + b; std::cout << "Value: " << c << std::endl; return 0; }