boost_no_std_wstring.ipp 663 B

12345678910111213141516171819202122232425262728
  1. // (C) Copyright John Maddock 2001.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/config for most recent version.
  6. // MACRO: BOOST_NO_STD_WSTRING
  7. // TITLE: std::wstring
  8. // DESCRIPTION: The standard library lacks std::wstring.
  9. #include <string>
  10. namespace boost_no_std_wstring{
  11. int test()
  12. {
  13. std::wstring s;
  14. if(*s.c_str() || (s.begin() != s.end()) || s.size() || (sizeof(std::wstring::value_type) != sizeof(wchar_t))) return -1;
  15. return 0;
  16. }
  17. }