From: Michael Wetherell Date: Sat, 28 Oct 2006 09:17:27 +0000 (+0000) Subject: Compile fix for VC++ 5 and 6. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d2b23e51e3c2168b2fdd80cbb537d79508b03012 Compile fix for VC++ 5 and 6. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/fs_arc.cpp b/src/common/fs_arc.cpp index 5df4232e85..c69153cdce 100644 --- a/src/common/fs_arc.cpp +++ b/src/common/fs_arc.cpp @@ -285,7 +285,7 @@ wxArchiveFSCacheData* wxArchiveFSCache::Add( const wxArchiveClassFactory& factory, wxInputStream *stream) { - wxArchiveFSCacheData& data(m_hash[name]); + wxArchiveFSCacheData& data = m_hash[name]; if (stream->IsSeekable()) data = wxArchiveFSCacheData(factory, stream);