Hello,
I don't know if this is supposed to work or not. It is a feature I was hoping for with improved C++11 support in Slickedit. Basically, if a type is declared as 'auto', SlickEdit autocomplete doesn't work.
examples:
#include <vector>
typedef struct
{
int a;
int b;
}dmy_s;
void main(void)
{
dmy_s ss;
auto xx = ss;
xx. // <- No autocomplete here
// Next test- this would be awesome if this worked
std::vector<dmy_s> vdmy;
for (const auto& ele : dmy_s)
{
ele. // <- no autocomplete here
}
}
Thanks!