From c1d741a54bb7225382b6c19a288b71fafe27c30d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 20 Feb 2005 03:43:32 +0000 Subject: [PATCH] inline --- stepmania/src/RageUtil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 );