summaryrefslogtreecommitdiffstats
path: root/lldb/source/Utility/StringExtractor.h
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2014-04-20 13:17:36 +0000
committerEd Maste <emaste@freebsd.org>2014-04-20 13:17:36 +0000
commitd4612ad0f3e443c2a0fb8cf57cdb4a03ba546a96 (patch)
treea1bfee39ae65a095b95a0b2ccb70e80418fa173a /lldb/source/Utility/StringExtractor.h
parent3a3ee3e3762a4fe0dbc084a6a3790377cee641e1 (diff)
downloadbcm5719-llvm-d4612ad0f3e443c2a0fb8cf57cdb4a03ba546a96.tar.gz
bcm5719-llvm-d4612ad0f3e443c2a0fb8cf57cdb4a03ba546a96.zip
Switch NULL to C++11 nullptr in source/Symbol and source/Utility
Patch by Robert Matusewicz llvm-svn: 206713
Diffstat (limited to 'lldb/source/Utility/StringExtractor.h')
-rw-r--r--lldb/source/Utility/StringExtractor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Utility/StringExtractor.h b/lldb/source/Utility/StringExtractor.h
index 2aab3b09f47..2b9e8861d9f 100644
--- a/lldb/source/Utility/StringExtractor.h
+++ b/lldb/source/Utility/StringExtractor.h
@@ -137,7 +137,7 @@ public:
{
if (m_index < m_packet.size())
return m_packet.c_str() + m_index;
- return NULL;
+ return nullptr;
}
protected:
OpenPOWER on IntegriCloud