diff options
| author | Sylvestre Ledru <sylvestre@debian.org> | 2014-07-06 17:54:58 +0000 |
|---|---|---|
| committer | Sylvestre Ledru <sylvestre@debian.org> | 2014-07-06 17:54:58 +0000 |
| commit | ceab3ac375137f7efe44b93e468a6994ab679721 (patch) | |
| tree | 6664d21c04e907615ed38bb5f2692bc6c3364de1 /lldb/source/Expression/ClangExpressionVariable.cpp | |
| parent | 3cc9d630318325d33c349c6617f36a5d814adabb (diff) | |
| download | bcm5719-llvm-ceab3ac375137f7efe44b93e468a6994ab679721.tar.gz bcm5719-llvm-ceab3ac375137f7efe44b93e468a6994ab679721.zip | |
remove trailing whitespace + remove some useless comments
llvm-svn: 212411
Diffstat (limited to 'lldb/source/Expression/ClangExpressionVariable.cpp')
| -rw-r--r-- | lldb/source/Expression/ClangExpressionVariable.cpp | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/lldb/source/Expression/ClangExpressionVariable.cpp b/lldb/source/Expression/ClangExpressionVariable.cpp index 0d355ce341c..c3eae41473e 100644 --- a/lldb/source/Expression/ClangExpressionVariable.cpp +++ b/lldb/source/Expression/ClangExpressionVariable.cpp @@ -8,11 +8,6 @@ //===----------------------------------------------------------------------===// #include "lldb/Expression/ClangExpressionVariable.h" - -// C Includes -// C++ Includes -// Other libraries and framework includes -// Project includes #include "clang/AST/ASTContext.h" #include "lldb/Core/ConstString.h" #include "lldb/Core/DataExtractor.h" @@ -44,17 +39,17 @@ ClangExpressionVariable::ClangExpressionVariable (const lldb::ValueObjectSP &val //---------------------------------------------------------------------- /// Return the variable's size in bytes //---------------------------------------------------------------------- -size_t +size_t ClangExpressionVariable::GetByteSize () { return m_frozen_sp->GetByteSize(); -} +} const ConstString & ClangExpressionVariable::GetName () { return m_frozen_sp->GetName(); -} +} lldb::ValueObjectSP ClangExpressionVariable::GetValueObject() @@ -78,13 +73,13 @@ ClangASTType ClangExpressionVariable::GetClangType() { return m_frozen_sp->GetClangType(); -} +} void ClangExpressionVariable::SetClangType(const ClangASTType &clang_type) { m_frozen_sp->GetValue().SetClangType(clang_type); -} +} TypeFromUser @@ -92,7 +87,7 @@ ClangExpressionVariable::GetTypeFromUser() { TypeFromUser tfu (m_frozen_sp->GetClangType()); return tfu; -} +} uint8_t * ClangExpressionVariable::GetValueBytes() @@ -130,7 +125,7 @@ ClangExpressionVariable::TransferAddress (bool force) if (m_frozen_sp.get() == NULL) return; - + if (force || (m_frozen_sp->GetLiveAddress() == LLDB_INVALID_ADDRESS)) m_frozen_sp->SetLiveAddress(m_live_sp->GetLiveAddress()); } |

