diff options
author | Greg Clayton <gclayton@apple.com> | 2010-07-20 22:52:08 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-07-20 22:52:08 +0000 |
commit | 471b31ce625e61664236c718f5f2a76135644514 (patch) | |
tree | 93a7423513ac5802698fb508ceec00c2a4bcd863 /lldb/source/Core/ValueObjectChild.cpp | |
parent | 3462779369380e32e68cbf35b7490a2f61475c78 (diff) | |
download | bcm5719-llvm-471b31ce625e61664236c718f5f2a76135644514.tar.gz bcm5719-llvm-471b31ce625e61664236c718f5f2a76135644514.zip |
Remove use of STL collection class use of the "data()" method since it isn't
part of C++'98. Most of these were "std::vector<T>::data()" and
"std::string::data()".
llvm-svn: 108957
Diffstat (limited to 'lldb/source/Core/ValueObjectChild.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectChild.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/ValueObjectChild.cpp b/lldb/source/Core/ValueObjectChild.cpp index b9258bd45db..9b9b8d9e849 100644 --- a/lldb/source/Core/ValueObjectChild.cpp +++ b/lldb/source/Core/ValueObjectChild.cpp @@ -112,8 +112,8 @@ ValueObjectChild::GetTypeName() if (clang_type_name) { std::vector<char> bitfield_type_name (strlen(clang_type_name) + 32, 0); - ::snprintf (bitfield_type_name.data(), bitfield_type_name.size(), "%s:%u", clang_type_name, m_bitfield_bit_size); - m_type_name.SetCString(bitfield_type_name.data()); + ::snprintf (&bitfield_type_name.front(), bitfield_type_name.size(), "%s:%u", clang_type_name, m_bitfield_bit_size); + m_type_name.SetCString(&bitfield_type_name.front()); } } } |