Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
Qt Creator 2.8.0, Qt Creator 2.8.1, Qt Creator 3.0.0-rc1
-
None
-
Windows 7 64bit
Qt Creator v2.8.1 built on Aug 23 at 13:40:09 from revision c3ed746c24.
Description
With MSVC10 headers, autocompletion does not work for the situation below. In v2.5.2 it worked.
#include <memory>
struct S {
int a, b, c;
};
namespace test {
// follow symbol under cursor does not work for shared_ptr
using std::shared_ptr;
}
void main() {
// follow symbol under cursor does not work for shared_ptr
test::shared_ptr<S>
p;
p-> // auto-completing after -> does not work
}
Attachments
Issue Links
- is replaced by
-
QTCREATORBUG-8937 Code Completion can not support std::unique_ptr
- Closed