void Function(std::vector& vec);
void Function(std::vector<int> &vec);
|
|
BasicFunctions.h(17) : error C2039: 'vector' : is not a member of 'std'
#include
statements are place-holders. During the first pass through your code, the compiler will substitute each #include <header-file>
statement with the contents of 'header-file'.