diff --git a/stepmania/src/RageUtil.h b/stepmania/src/RageUtil.h index 0f3e319b73..3ed850d795 100644 --- a/stepmania/src/RageUtil.h +++ b/stepmania/src/RageUtil.h @@ -379,7 +379,7 @@ bool FromString( const CString &sValue, int &out ); bool FromString( const CString &sValue, unsigned &out ); bool FromString( const CString &sValue, float &out ); bool FromString( const CString &sValue, bool &out ); -bool FromString( const CString &sValue, CString &out ) { out = sValue; return true; } +inline bool FromString( const CString &sValue, CString &out ) { out = sValue; return true; } CString ToString( int value ); CString ToString( unsigned value );