diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-08 18:26:57 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-08 18:26:57 +0000 |
| commit | 82944983b4aca8389441f3a1aadce51ff572759d (patch) | |
| tree | 0835c06d5bb29e1a1e16a7ffbd38ec8616d8d489 /lldb/source/DataFormatters | |
| parent | f4b7a6b0302b7e80385fe6e152fc46e1e196b442 (diff) | |
| download | bcm5719-llvm-82944983b4aca8389441f3a1aadce51ff572759d.tar.gz bcm5719-llvm-82944983b4aca8389441f3a1aadce51ff572759d.zip | |
DataFormatters: add missing destructor implementation
The last of the missing symbols to correct the make based build to restore the
FreeBSD buildbot!
llvm-svn: 217394
Diffstat (limited to 'lldb/source/DataFormatters')
| -rw-r--r-- | lldb/source/DataFormatters/TypeValidator.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/DataFormatters/TypeValidator.cpp b/lldb/source/DataFormatters/TypeValidator.cpp index f1b777de763..ef0c4610afe 100644 --- a/lldb/source/DataFormatters/TypeValidator.cpp +++ b/lldb/source/DataFormatters/TypeValidator.cpp @@ -26,6 +26,10 @@ TypeValidatorImpl::TypeValidatorImpl(const Flags &flags) { } +TypeValidatorImpl::~TypeValidatorImpl() +{ +} + TypeValidatorImpl::ValidationResult TypeValidatorImpl::Success () { |

