Details
-
Bug
-
Resolution: Cannot Reproduce
-
Not Evaluated
-
Qt Creator 2.6.1
-
None
-
ubuntu 12.04
Description
Example:
struct Foo { int bar; }; template <typename T = Foo> struct TemplateStruct { T t; }; { TemplateStruct<> templateStruct; templateStruct.t. //code completion does not work } { TemplateStruct<Foo> templateStruct; templateStruct.t. //code completion works }