I have following std::vector declaration:
std::vector
I am initializing
std::vector has a constructor that takes two arguments, a number of elements and an initial value. In your case, you want to initialize m_input with 100 copies of a std::vector , so it'd be : m_input(100, X). Now, that X in turn is a vector of 100 std::vector, which in turn contains a hundred ints:
: m_input(100, std::vector