I\'ve just started using Eclipse Indigo (coming from Galileo) and I\'m getting little red bugs in the gutter for every use of size_t.
To make sure to get size_t you should #include the header ; then, it would be std::size_t, unless you also put a using namespace std or a using std::size_t.
size_t
#include
std::size_t
using namespace std
using std::size_t