[Lldb-commits] [lldb] r217394 - DataFormatters: add missing destructor implementation

Saleem Abdulrasool compnerd at compnerd.org
Mon Sep 8 11:26:58 PDT 2014


Author: compnerd
Date: Mon Sep  8 13:26:57 2014
New Revision: 217394

URL: http://llvm.org/viewvc/llvm-project?rev=217394&view=rev
Log:
DataFormatters: add missing destructor implementation

The last of the missing symbols to correct the make based build to restore the
FreeBSD buildbot!

Modified:
    lldb/trunk/source/DataFormatters/TypeValidator.cpp

Modified: lldb/trunk/source/DataFormatters/TypeValidator.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/TypeValidator.cpp?rev=217394&r1=217393&r2=217394&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/TypeValidator.cpp (original)
+++ lldb/trunk/source/DataFormatters/TypeValidator.cpp Mon Sep  8 13:26:57 2014
@@ -26,6 +26,10 @@ TypeValidatorImpl::TypeValidatorImpl(con
 {
 }
 
+TypeValidatorImpl::~TypeValidatorImpl()
+{
+}
+
 TypeValidatorImpl::ValidationResult
 TypeValidatorImpl::Success ()
 {





More information about the lldb-commits mailing list