Details
-
Bug
-
Resolution: Duplicate
-
P2: Important
-
None
-
Qt Creator 3.1.0-beta
-
None
-
Ubuntu 13.10 x86_64
Description
When introducing a type alias, either by using a typedef or a using declaration, and decltype, the editor marks the corresponding line as erroneous.
Examples:
std::vector<int> v; typedef decltype(v)::value_type ValT; // red squiggly lines here ... using ValT = decltype(v)::value_type; // ... and here
Attachments
Issue Links
- is replaced by
-
QTCREATORBUG-13726 Invalid syntax checker errors when using decltype (C++11)
- Closed