I have a vector of doubles. But I had a typo
I intended to write this:
std::vector<double> timestamp;
But I wrote this instead:
std::vector<std::vector<double>> timestamp;
However, this compiles
timestamp.emplace_back(a_double_timestamp)
I am emplacing back a double into a std::vector<std::vector<double>>. double is not std::vector<double>