From 82944983b4aca8389441f3a1aadce51ff572759d Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 8 Sep 2014 18:26:57 +0000 Subject: [PATCH] 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 --- lldb/source/DataFormatters/TypeValidator.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lldb/source/DataFormatters/TypeValidator.cpp b/lldb/source/DataFormatters/TypeValidator.cpp index f1b777de763e..ef0c4610afe4 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 () {