From d2b23e51e3c2168b2fdd80cbb537d79508b03012 Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Sat, 28 Oct 2006 09:17:27 +0000 Subject: [PATCH] Compile fix for VC++ 5 and 6. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/fs_arc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.0