- 
    Bug 
- 
    Resolution: Fixed
- 
     Not Evaluated Not Evaluated
- 
    Qt Creator 4.0.0
- 
    None
- 
    Kubuntu 16.04x64
 QtCreator 4.0.0 with clang-code model
 gcc 5.3.1
In the following code sometimes autocompletion replaces 'rhs.' to 'rhs->'
test.cpp
class A{ public: A(const A &rhs) { m_x=rhs.m_x; //Autocompletion works fine } private: int m_x; }; template <typename T> class AA{ public: AA(const AA<T>& rhs) { m_x=rhs-> //Sometimes (not always) 'rhs.' replaces to 'rhs->' } private: int m_x; };
- relates to
- 
                    QTCREATORBUG-16333 floating point values get automatically corrected to pointers -           
- Closed
 
-