state_recorder: Prefix call to move with std:: to silence warning

This commit is contained in:
Jeremy Lorelli 2022-08-29 22:10:40 -07:00
parent 6d81c04454
commit 976cfe4016
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ public:
JoltStateRecorderFile( JoltStateRecorderFile &&other )
: StateRecorder( other )
, m_Stream( move( other.m_Stream ) )
, m_Stream( std::move( other.m_Stream ) )
{
}