diff options
author | Pavel Labath <labath@google.com> | 2018-06-21 15:24:39 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-06-21 15:24:39 +0000 |
commit | a174bcbf033da7392b8c2c96c381d45f09a9810f (patch) | |
tree | 0c7f690c4a6d44253fb9974539046b57325415df /lldb/unittests/Target/ModuleCacheTest.cpp | |
parent | bb9dedfa8a5205d512e71ae462e77ba4e482e8d4 (diff) | |
download | bcm5719-llvm-a174bcbf033da7392b8c2c96c381d45f09a9810f.tar.gz bcm5719-llvm-a174bcbf033da7392b8c2c96c381d45f09a9810f.zip |
Remove UUID::SetFromCString
Replace uses with SetFromStringRef. NFC.
llvm-svn: 335246
Diffstat (limited to 'lldb/unittests/Target/ModuleCacheTest.cpp')
-rw-r--r-- | lldb/unittests/Target/ModuleCacheTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/Target/ModuleCacheTest.cpp b/lldb/unittests/Target/ModuleCacheTest.cpp index 1219a1db131..0b9e02df781 100644 --- a/lldb/unittests/Target/ModuleCacheTest.cpp +++ b/lldb/unittests/Target/ModuleCacheTest.cpp @@ -93,7 +93,7 @@ void ModuleCacheTest::TryGetAndPut(const FileSpec &cache_dir, ModuleCache mc; ModuleSpec module_spec; module_spec.GetFileSpec() = GetDummyRemotePath(); - module_spec.GetUUID().SetFromCString(module_uuid, uuid_bytes); + module_spec.GetUUID().SetFromStringRef(module_uuid, uuid_bytes); module_spec.SetObjectSize(module_size); ModuleSP module_sp; bool did_create; |