Hey all,
I am having trouble with the ""std_lib_facilities.h" header. I am getting the complier message:
error C2614: 'String' : illegal member initialization: 'string' is not a base or member
I am going through Bjarne Stroustrup's - Programming Principles and Practice Using C++ and he suggests that if you cant get your hands on the "std_lib_facilities.h" you can use:
#include "iostream"
#include<string>
#include<vector>
#include<algorithm>
#include<cmath>
using namespace std;
inline void keep_window_open() {char ch; cin>>ch; }
instead. But I use these headers I am getting a complier message:
error C2065: 'error' : undeclared identifier
Basicially if I could get the "std_lib_facilities.h" working or if I knew what header to include that has the 'error' in it I would be greatful. Thanks for your help.
Colm