blob: 7e61d984bdb00e760b89994ea54ab71b7bd88449 [file] [log] [blame]
#ifndef _GLIBCXX_TESTSUITE_STRING_H
#define _GLIBCXX_TESTSUITE_STRING_H
#if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_TEST_DEBUG_STRING)
# 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