blob: 7121ff8ec6d5b9d268f5a692a9abc9fe6e05ec1c [file]
#ifndef _GLIBCXX_TESTSUITE_STRING_H
#define _GLIBCXX_TESTSUITE_STRING_H
#ifdef _GLIBCXX_DEBUG
# include <debug/string>
namespace __gnu_test
{
using __gnu_debug::string;
using __gnu_debug::wstring;
}
#else
# include <string>
namespace __gnu_test
{
using std::string;
using std::wstring;
}
#endif
#endif