Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
502 B

  1. // string -- template string support functions
  2. #include <istream>
  3. _STD_BEGIN
  4. _CRTIMP2 void _String_base::_Xlen() const
  5. { // report a length_error
  6. _THROW(length_error, "string too long");
  7. }
  8. _CRTIMP2 void _String_base::_Xran() const
  9. { // report an out_of_range error
  10. _THROW(out_of_range, "invalid string position");
  11. }
  12. _STD_END
  13. /*
  14. * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
  15. * Consult your license regarding permissions and restrictions.
  16. V3.10:0009 */