Fix up how the ValueObjects manage their life cycle so that you can hand out a shared
pointer to a ValueObject or any of its dependent ValueObjects, and the whole cluster will
stay around as long as that shared pointer stays around.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@130035 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangExpressionVariable.cpp b/source/Expression/ClangExpressionVariable.cpp
index 2725e6c..9a264eb 100644
--- a/source/Expression/ClangExpressionVariable.cpp
+++ b/source/Expression/ClangExpressionVariable.cpp
@@ -29,7 +29,7 @@
     m_parser_vars(),
     m_jit_vars (),
     m_flags (EVNone),
-    m_frozen_sp (new ValueObjectConstResult(exe_scope, byte_order, addr_byte_size))
+    m_frozen_sp (ValueObjectConstResult::Create (exe_scope, byte_order, addr_byte_size))
 {
 }