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
#include
Also, std::vector is template type, so you have to use it like
std::vector buffer;