[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:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user