]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - bytecode/LazyOperandValueProfile.cpp
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / bytecode / LazyOperandValueProfile.cpp
index e58420eeb889870e2085b59146490284f84a3aa7..de654db6881c2adcdf8aab05958d0371c812935a 100644 (file)
@@ -46,7 +46,7 @@ LazyOperandValueProfile* CompressedLazyOperandValueProfileHolder::add(
     const ConcurrentJITLocker&, const LazyOperandValueProfileKey& key)
 {
     if (!m_data)
-        m_data = adoptPtr(new LazyOperandValueProfile::List());
+        m_data = std::make_unique<LazyOperandValueProfile::List>();
     else {
         for (unsigned i = 0; i < m_data->size(); ++i) {
             if (m_data->at(i).key() == key)