diff options
author | Matt Beaumont-Gay <matthewbg@google.com> | 2012-12-07 22:49:27 +0000 |
---|---|---|
committer | Matt Beaumont-Gay <matthewbg@google.com> | 2012-12-07 22:49:27 +0000 |
commit | 422daa1b838788c3ef564640f9d91f52d7deffbe (patch) | |
tree | 5e04fa3cdc206750dd3bdc6cd6ca62073d8c314e | |
parent | e1c2c2023ee160bd3051682faff04c4f9c5e8ebd (diff) |
Appease -Wnon-virtual-dtor
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169648 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Format/UnwrappedLineParser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Format/UnwrappedLineParser.h b/lib/Format/UnwrappedLineParser.h index 92a51abf10..908391d3db 100644 --- a/lib/Format/UnwrappedLineParser.h +++ b/lib/Format/UnwrappedLineParser.h @@ -79,6 +79,8 @@ public: class FormatTokenSource { public: + virtual ~FormatTokenSource() { + } virtual FormatToken getNextToken() = 0; }; |