forked from OSchip/llvm-project
[libcxx] [test] Fix whitespace, NFC.
Strip trailing whitespace and untabify. llvm-svn: 331576
This commit is contained in:
parent
eb0fa1c054
commit
00d83601b4
|
@ -19,23 +19,23 @@
|
|||
|
||||
template <typename Char, typename Traits = std::char_traits<Char> >
|
||||
struct my_streambuf : public std::basic_streambuf<Char,Traits> {
|
||||
typedef typename std::basic_streambuf<Char,Traits>::int_type int_type;
|
||||
typedef typename std::basic_streambuf<Char,Traits>::char_type char_type;
|
||||
|
||||
my_streambuf() {}
|
||||
int_type sputc(char_type) { return Traits::eof(); }
|
||||
};
|
||||
typedef typename std::basic_streambuf<Char,Traits>::int_type int_type;
|
||||
typedef typename std::basic_streambuf<Char,Traits>::char_type char_type;
|
||||
|
||||
my_streambuf() {}
|
||||
int_type sputc(char_type) { return Traits::eof(); }
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
my_streambuf<char> buf;
|
||||
my_streambuf<char> buf;
|
||||
std::ostreambuf_iterator<char> i(&buf);
|
||||
i = 'a';
|
||||
assert(i.failed());
|
||||
}
|
||||
{
|
||||
my_streambuf<wchar_t> buf;
|
||||
my_streambuf<wchar_t> buf;
|
||||
std::ostreambuf_iterator<wchar_t> i(&buf);
|
||||
i = L'a';
|
||||
assert(i.failed());
|
||||
|
|
Loading…
Reference in New Issue