diff options
| author | Enrico Granata <egranata@apple.com> | 2012-10-27 02:05:48 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2012-10-27 02:05:48 +0000 |
| commit | 21fd13f9b704361e36af81939e068ccbf6a669d1 (patch) | |
| tree | caf4ccbf84ecede57fd9eda1da9ffdc89d5164ea /lldb/source/Core/ValueObject.cpp | |
| parent | cd6ce2ff3113ec70d24d3013a24bb379f1455ccf (diff) | |
| download | bcm5719-llvm-21fd13f9b704361e36af81939e068ccbf6a669d1.tar.gz bcm5719-llvm-21fd13f9b704361e36af81939e068ccbf6a669d1.zip | |
Moving ValueObjectCast over to its own .h/.cpp files instead of sharing ValueObjectDynamic.h/.cpp
Removing the IsDynamic() and GetStaticValue() calls, so that they will default to the base class behavior:
- non-dynamic
- itself as the static value
This is in contrast with the previous behavior which could be confusing and could potentially cause issues when using those objects
llvm-svn: 166857
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index f608f85f3cd..c3560f1089e 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -24,6 +24,7 @@ #include "lldb/Core/Log.h" #include "lldb/Core/Module.h" #include "lldb/Core/StreamString.h" +#include "lldb/Core/ValueObjectCast.h" #include "lldb/Core/ValueObjectChild.h" #include "lldb/Core/ValueObjectConstResult.h" #include "lldb/Core/ValueObjectDynamicValue.h" |

