aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Utility/Scalar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Utility/Scalar.cpp')
-rw-r--r--lldb/source/Utility/Scalar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Utility/Scalar.cpp b/lldb/source/Utility/Scalar.cpp
index 9bf633d0c4e0..e0b26e89f3c1 100644
--- a/lldb/source/Utility/Scalar.cpp
+++ b/lldb/source/Utility/Scalar.cpp
@@ -160,7 +160,7 @@ void Scalar::GetValue(Stream *s, bool show_type) const {
case e_void:
break;
case e_int:
- s->PutCString(m_integer.toString(10));
+ s->PutCString(llvm::toString(m_integer, 10));
break;
case e_float:
llvm::SmallString<24> string;