#include "../../std_lib_facilities.h"
  int main()
  try {
              vector<char> v(5); for(int i = 0; 0<v.sizez(); ++i); 
              
  return 0;
  }
  catch(exception& e) {
  cerr << "error: " << e.what() << '\n';
  keep_window_open();
  return 1;
  }
  catch( ... ) {
  cerr << "Oops: unknown exception!\n";
  keep_window_open();
  return 1;
  }
   
  the error i get is
  vector<char> v(5); for(int i = 0; 0<v.sizez(); ++i);
  sizez: is not a member of  ‘Vector <T>‘
 
         

 
---------------------------------
Now that's room service! Choose from over 150,000 hotels 
in 45,000 destinations on Yahoo! Travel to find your fit.

Reply via email to