Hi all,

the minimal example below compiles/executes fine, but I'm missing the 
code-completion features of qtcreator: e.g. writing

t.j<Ctrl-Space>

doesn't show any code-completions.

What am I missing here?

---

#include <iostream>
#include <thread>

void hello()
{
     std::cout << "Hello" << std::endl;
}

int main() {
     std::thread t(hello);

     t.join();

     return 0;
}

-- 
Wilhelm

_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.qt.nokia.com/mailman/listinfo/qt-creator

Reply via email to