diff options
author | Enrico Granata <egranata@apple.com> | 2014-10-21 20:52:14 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2014-10-21 20:52:14 +0000 |
commit | 622be238eb847fbb15b320028263668d17d7e21f (patch) | |
tree | aeae21a749b75277b35b4a54c6b7a9c4a076b8a8 /lldb/source/Core/ValueObjectChild.cpp | |
parent | a61262f989d802b3a38e965a50159274a6d154fa (diff) | |
download | bcm5719-llvm-622be238eb847fbb15b320028263668d17d7e21f.tar.gz bcm5719-llvm-622be238eb847fbb15b320028263668d17d7e21f.zip |
Expose the type-info flags at the public API layer. These flags provide much more informational content to consumers of the LLDB API than the existing TypeClass. Part of the fix for rdar://18517593
llvm-svn: 220322
Diffstat (limited to 'lldb/source/Core/ValueObjectChild.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectChild.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObjectChild.cpp b/lldb/source/Core/ValueObjectChild.cpp index 33b91f9e30d..2b3c8344af8 100644 --- a/lldb/source/Core/ValueObjectChild.cpp +++ b/lldb/source/Core/ValueObjectChild.cpp @@ -208,7 +208,7 @@ ValueObjectChild::UpdateValue () { const bool thread_and_frame_only_if_stopped = true; ExecutionContext exe_ctx (GetExecutionContextRef().Lock(thread_and_frame_only_if_stopped)); - if (GetClangType().GetTypeInfo() & ClangASTType::eTypeHasValue) + if (GetClangType().GetTypeInfo() & lldb::eTypeHasValue) m_error = m_value.GetValueAsData (&exe_ctx, m_data, 0, GetModule().get()); else m_error.Clear(); // No value so nothing to read... |