gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r11967: Make copy ctor non-explicit


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r11967: Make copy ctor non-explicit to fix gcc-3.4 build.
Date: Wed, 24 Feb 2010 18:05:18 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 11967
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Wed 2010-02-24 18:05:18 +0100
message:
  Make copy ctor non-explicit to fix gcc-3.4 build.
modified:
  libbase/RTMP.h
=== modified file 'libbase/RTMP.h'
--- a/libbase/RTMP.h    2010-02-24 09:52:37 +0000
+++ b/libbase/RTMP.h    2010-02-24 17:05:18 +0000
@@ -200,7 +200,7 @@
     //
     /// Creates an identical RTMPPacket with shared ownership of the
     /// buffer.
-    explicit RTMPPacket(const RTMPPacket& other);
+    RTMPPacket(const RTMPPacket& other);
 
     ~RTMPPacket() {}
 


reply via email to

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