I have a tiny .h file:
#include "stdafx.h" #ifndef BIGNUM_H #define BIGNUM_H #include <vector> class bignum{ private: std::vector<int> num; num.resize(4); }; #endif I get the following error messages:
- excepted type speciefier
- this declaration has no storage class or type specifier
What am I missing?