Index: src/libchcore/TSubTaskFastMove.cpp =================================================================== diff -u -N -rcc02a2b70a8e6d4108ef25365ddcdb47fc436cbe -r4fe995b304ea342b50293f92d3c1992b43b820f7 --- src/libchcore/TSubTaskFastMove.cpp (.../TSubTaskFastMove.cpp) (revision cc02a2b70a8e6d4108ef25365ddcdb47fc436cbe) +++ src/libchcore/TSubTaskFastMove.cpp (.../TSubTaskFastMove.cpp) (revision 4fe995b304ea342b50293f92d3c1992b43b820f7) @@ -81,7 +81,7 @@ TSubTaskFastMove::ESubOperationResult TSubTaskFastMove::Exec(const IFeedbackHandlerPtr& spFeedback) { TScopedRunningTimeTracker guard(m_tSubTaskStats); - TFeedbackHandlerWrapperPtr spFeedbackHandler(boost::make_shared(spFeedback, guard)); + TFeedbackHandlerWrapperPtr spFeedbackHandler(std::make_shared(spFeedback, guard)); // log chcore::log_file& rLog = GetContext().GetLog(); @@ -143,7 +143,7 @@ if (spBasePath->GetSkipFurtherProcessing()) continue; - TFileInfoPtr spFileInfo(boost::make_shared()); + TFileInfoPtr spFileInfo(std::make_shared()); bool bSkip = false; ESubOperationResult eResult = tFilesystemFBWrapper.GetFileInfoFB(pathCurrent, spFileInfo, spBasePath, bSkip);