From 2d7ae984e2560456e479d34cadcb92000705b360 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 29 Dec 2005 02:36:46 +0000 Subject: [PATCH] fix VC6 compile (braindead std::string?) --- stepmania/src/RageUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageUtil.cpp b/stepmania/src/RageUtil.cpp index 3cb9152cf7..ea40ebe008 100644 --- a/stepmania/src/RageUtil.cpp +++ b/stepmania/src/RageUtil.cpp @@ -1040,7 +1040,7 @@ void Regex::Release() { pcre_free( m_pReg ); m_pReg = NULL; - m_sPattern.clear(); + m_sPattern = RString(); } Regex::Regex( const RString &sStr )