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 committed by Joshie
parent 25eecb1f35
commit 347e78d122
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 ) )
{
}