blob: 7e61d984bdb00e760b89994ea54ab71b7bd88449 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|