From de8a86213f076c031df623ed87406cc2fa0583ed Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 12 Oct 2005 21:27:15 +0000 Subject: [PATCH] fix VC6 compile --- stepmania/src/XmlFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/XmlFile.cpp b/stepmania/src/XmlFile.cpp index 9605ed19f2..41bdce2c04 100644 --- a/stepmania/src/XmlFile.cpp +++ b/stepmania/src/XmlFile.cpp @@ -154,7 +154,7 @@ unsigned XNode::LoadAttributes( const CString &xml, PARSEINFO *pi, unsigned iOff // add new attribute DEBUG_ASSERT( sName.size() ); - pair it = m_attrs.insert( make_pair(sName, "") ); + pair it = m_attrs.insert( make_pair(sName, CString()) ); CString &sValue = it.first->second; iOffset = iEnd;