Call tip is not working for
vectorOne nor it is being autocompleted by the codeblocks. No problem with vectorTwo or vectorThree.
I am using codeblocks 17.12 x86 on windows. C++11 is used.
#include <vector>
using namespace std;
int main()
{
vector<int> vectorOne {233,3};
vector<int> vectorTwo;
vector<int> vectorThree = {1,2};
return 0;
}