Mark 218 tests as fail to compile lack of C++0x features.
This commit is contained in:
@@ -1,25 +0,0 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <streambuf>
|
||||
|
||||
// template <class charT, class traits = char_traits<charT> >
|
||||
// class basic_streambuf;
|
||||
|
||||
// basic_streambuf(const basic_streambuf& rhs); // protected
|
||||
|
||||
#include <streambuf>
|
||||
#include <cassert>
|
||||
|
||||
std::streambuf get();
|
||||
|
||||
int main()
|
||||
{
|
||||
std::streambuf sb = get();
|
||||
}
|
@@ -1,22 +0,0 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <streambuf>
|
||||
|
||||
// template <class charT, class traits = char_traits<charT> >
|
||||
// class basic_streambuf;
|
||||
|
||||
// basic_streambuf(); // is protected
|
||||
|
||||
#include <streambuf>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::basic_streambuf<char> sb;
|
||||
}
|
Reference in New Issue
Block a user