summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/source/DataFormatters/TypeValidator.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/source/DataFormatters/TypeValidator.cpp b/lldb/source/DataFormatters/TypeValidator.cpp
index b8bcacd9d3c..f1b777de763 100644
--- a/lldb/source/DataFormatters/TypeValidator.cpp
+++ b/lldb/source/DataFormatters/TypeValidator.cpp
@@ -20,6 +20,12 @@
using namespace lldb;
using namespace lldb_private;
+TypeValidatorImpl::TypeValidatorImpl(const Flags &flags)
+ : m_flags(flags)
+ , m_my_revision(0)
+{
+}
+
TypeValidatorImpl::ValidationResult
TypeValidatorImpl::Success ()
{
@@ -39,6 +45,10 @@ TypeValidatorImpl_CXX::TypeValidatorImpl_CXX (ValidatorFunction f, std::string d
{
}
+TypeValidatorImpl_CXX::~TypeValidatorImpl_CXX()
+{
+}
+
TypeValidatorImpl::ValidationResult
TypeValidatorImpl_CXX::FormatObject (ValueObject *valobj) const
{
OpenPOWER on IntegriCloud