* testsuite/22_locale/num_put/put/char/7.cc: Guard with
_GLIBCPP_USE_WCHAR_T.
From-SVN: r68883
+2003-07-03 David Edelsohn <edelsohn@gnu.org>
+
+ * testsuite/22_locale/num_put/put/char/7.cc: Guard with
+ _GLIBCPP_USE_WCHAR_T.
+
2003-07-02 Paolo Carlini <pcarlini@unitus.it>
* include/bits/basic_string.tcc (_M_replace_aux): Constify
#include <locale>
#include <testsuite_hooks.h>
+#ifdef _GLIBCPP_USE_WCHAR_T
// libstdc++/9828
void test01()
{
np.put(stream, wcout, ' ', static_cast<long>(10));
VERIFY( stream.str() == "10" );
}
+#endif
int main()
{
+#ifdef _GLIBCPP_USE_WCHAR_T
test01();
+#endif
return 0;
}