Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error , Symbol 'vector' could not be resolved

Tags:

I am using eclipse in linux to develop a c++ application and I am getting this editor annotation error "Symbol 'vector' could not be resolved" from the following code lines

std::vector<unsigned char> buffer; 

I feel that some library is missing or the paths are not set. I explicitly downloaded STL but its of no use. Do I have to re install GCC on my linux ?

like image 612
Umair Zaman Avatar asked Aug 08 '11 09:08

Umair Zaman


1 Answers

In Eclipse, right-click on the project name...Select Index...Rebuild.

like image 97
RDH Avatar answered Oct 09 '22 21:10

RDH