Move yaml::Stream's dtor out of line so it can see Scanner's dtor.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154004 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2012-04-04 08:53:34 +00:00
parent 32d1774d45
commit a95b4ebf3c
2 changed files with 3 additions and 0 deletions

View File

@ -78,6 +78,7 @@ std::string escape(StringRef Input);
class Stream {
public:
Stream(StringRef Input, SourceMgr &);
~Stream();
document_iterator begin();
document_iterator end();

View File

@ -1523,6 +1523,8 @@ Stream::Stream(StringRef Input, SourceMgr &SM)
: scanner(new Scanner(Input, SM))
, CurrentDoc(0) {}
Stream::~Stream() {}
bool Stream::failed() { return scanner->failed(); }
void Stream::printError(Node *N, const Twine &Msg) {