gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r11988: Fix for 'g++ -pedtantic -std


From: Markus Gothe
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r11988: Fix for 'g++ -pedtantic -std=c++98' yeileding 'error: comma at end of enumerator list'
Date: Sun, 07 Mar 2010 21:38:17 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 11988
committer: Markus Gothe <address@hidden>
branch nick: trunk
timestamp: Sun 2010-03-07 21:38:17 +0100
message:
  Fix for 'g++ -pedtantic -std=c++98' yeileding 'error: comma at end of 
enumerator list'
modified:
  libbase/AMF.h
  libbase/RTMP.h
=== modified file 'libbase/AMF.h'
--- a/libbase/AMF.h     2010-02-25 21:39:02 +0000
+++ b/libbase/AMF.h     2010-03-07 20:38:17 +0000
@@ -60,7 +60,7 @@
     UNSUPPORTED_AMF0  = 0x0d,
     RECORD_SET_AMF0   = 0x0e,
     XML_OBJECT_AMF0   = 0x0f,
-    TYPED_OBJECT_AMF0 = 0x10,
+    TYPED_OBJECT_AMF0 = 0x10
 };
 
 /// Exception for handling malformed buffers.

=== modified file 'libbase/RTMP.h'
--- a/libbase/RTMP.h    2010-02-24 18:00:03 +0000
+++ b/libbase/RTMP.h    2010-03-07 20:38:17 +0000
@@ -139,7 +139,7 @@
     RTMP_PACKET_SIZE_LARGE = 0,
     RTMP_PACKET_SIZE_MEDIUM = 1,
     RTMP_PACKET_SIZE_SMALL = 2,
-    RTMP_PACKET_SIZE_MINIMUM = 3,
+    RTMP_PACKET_SIZE_MINIMUM = 3
 };
 
 /// The RTMPHeader contains all the fields for the packet header.


reply via email to

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