Hi my friends.
I want to ask if this is problem of Qt Creator. (I use Qt Creator 3.5.0 opensource based on Qt 5.5.0, and use C++11)
I write a next code :
Qt Code:
  1. int c = 0;
  2. for(int a=0;a<m_s;a++) {
  3. for(int b=0;b<m_s;b++) {
  4. m_substCodeToPair[c] = std::pair<int,int>(a,b);
  5. c++;
  6. }
  7. }
  8. }
To copy to clipboard, switch view to plain text mode 
pair appear with a yellow-green underline, and if i move my mouse there it tell me "Too few arguments"
If a compile, it compile fine, but Qt Creator always underline there.
What i can do in order to remove this warning underline ?
Daniel