[profiler_capture_api] updated ProfilerRequests::StartCapture signature as per PR feedback

Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com>
This commit is contained in:
AMZN-ScottR
2021-10-25 15:51:12 -07:00
parent 471436b0fc
commit c6d3e7900c
3 changed files with 4 additions and 4 deletions
@@ -195,9 +195,9 @@ namespace Profiler
return true;
}
bool ProfilerSystemComponent::StartCapture(const AZStd::string& outputFilePath)
bool ProfilerSystemComponent::StartCapture(AZStd::string outputFilePath)
{
m_captureFile = outputFilePath;
m_captureFile = AZStd::move(outputFilePath);
return m_cpuProfiler.BeginContinuousCapture();
}