You must try:
Class::Class() :
raster_(60, std::vector<Cell>(80, Cell(true, true)))
{
}
Note that I removed the useless std::vector<std::vector<Cell> >from the initializer. Also keep in mind that this can be very inefficient depending on the cost of copying Cell:
std::vector<Cell>, 80 Cell(true, true)std::vector<std::vector<Cell> > 60 ( 80 )!