gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/rtmp r9971: don't use a reference to a cla


From: rob
Subject: [Gnash-commit] /srv/bzr/gnash/rtmp r9971: don't use a reference to a class in a std::map, older versions of g++ don't like it.
Date: Wed, 04 Feb 2009 14:22:01 -0700
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 9971
committer: address@hidden
branch nick: rtmp
timestamp: Wed 2009-02-04 14:22:01 -0700
message:
  don't use a reference to a class in a std::map, older versions of g++ don't 
like it.
modified:
  cygnal/rtmp_server.h
=== modified file 'cygnal/rtmp_server.h'
--- a/cygnal/rtmp_server.h      2009-01-05 05:32:18 +0000
+++ b/cygnal/rtmp_server.h      2009-02-04 21:22:01 +0000
@@ -67,7 +67,7 @@
     gnash::DiskStream::filetype_e  _filetype;
     std::string                _filespec;
     boost::uint32_t     _filesize;
-    std::map<boost::uint16_t, amf::Element &> _references;
+    std::map<boost::uint16_t, amf::Element> _references;
 };
 
 // This is the thread for all incoming RTMP connections


reply via email to

[Prev in Thread] Current Thread [Next in Thread]