1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

Fixed GCC reorder warning in util_shared CountdownTimer.

This commit is contained in:
Nicholas Hastings
2013-02-05 21:34:56 -05:00
parent 64a37e1969
commit 5d4df73a21

View File

@ -690,7 +690,7 @@ public:
DECLARE_EMBEDDED_NETWORKVAR();
CountdownTimer( void ) :
m_timestamp( -1.0f), m_duration( 0.0f )
m_duration( 0.0f ), m_timestamp( -1.0f)
{
}