diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-04 08:53:34 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-04 08:53:34 +0000 |
commit | a95b4ebf3c17f0069b8cea3841d66395eaf6d4e1 (patch) | |
tree | f97e22be8d7eb709dacc96f7fcabdef32705dc95 /include/llvm/Support/YAMLParser.h | |
parent | 32d1774d45532508c9c76fa8e4dad9454ec50656 (diff) |
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
Diffstat (limited to 'include/llvm/Support/YAMLParser.h')
-rw-r--r-- | include/llvm/Support/YAMLParser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/YAMLParser.h b/include/llvm/Support/YAMLParser.h index c5a51abb05..1f0fc4828c 100644 --- a/include/llvm/Support/YAMLParser.h +++ b/include/llvm/Support/YAMLParser.h @@ -78,6 +78,7 @@ std::string escape(StringRef Input); class Stream { public: Stream(StringRef Input, SourceMgr &); + ~Stream(); document_iterator begin(); document_iterator end(); |