gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-


From: Benjamin Wolsey
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-108-g0f04fd3
Date: Tue, 22 Feb 2011 08:18:22 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  0f04fd35db8a343d02d4af149990d5a9499ac016 (commit)
       via  5ad29f6b15b6e8805c48f9165fc54b2a639918ff (commit)
      from  93a1d9ee8edbd43248c33a1a39da2340640719d4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=0f04fd35db8a343d02d4af149990d5a9499ac016


commit 0f04fd35db8a343d02d4af149990d5a9499ac016
Author: Benjamin Wolsey <address@hidden>
Date:   Tue Feb 22 08:44:19 2011 +0100

    Drop exception specification because a) it's not clear
    we can guarantee it ( see
    https://bugzilla.redhat.com/show_bug.cgi?id=657826 ), b) it
    does nothing for optimization or code clarity.

diff --git a/libmedia/MediaHandler.cpp b/libmedia/MediaHandler.cpp
index 5d3688a..e49e0cd 100644
--- a/libmedia/MediaHandler.cpp
+++ b/libmedia/MediaHandler.cpp
@@ -36,7 +36,7 @@ namespace gnash {
 namespace media {
 
 bool
-MediaHandler::isFLV(IOChannel& stream) throw (IOException)
+MediaHandler::isFLV(IOChannel& stream)
 {
     char head[4] = {0, 0, 0, 0};
     stream.seek(0);
diff --git a/libmedia/MediaHandler.h b/libmedia/MediaHandler.h
index eae25d7..b0b5777 100644
--- a/libmedia/MediaHandler.h
+++ b/libmedia/MediaHandler.h
@@ -164,7 +164,7 @@ protected:
     /// Return true if input stream is an FLV
     //
     /// If this cannot read the necessary 3 bytes, it throws an IOException.
-    bool isFLV(IOChannel& stream) throw (IOException);
+    bool isFLV(IOChannel& stream);
 
 };
 

http://git.savannah.gnu.org/cgit//commit/?id=5ad29f6b15b6e8805c48f9165fc54b2a639918ff


commit 5ad29f6b15b6e8805c48f9165fc54b2a639918ff
Author: Benjamin Wolsey <address@hidden>
Date:   Tue Feb 22 08:43:10 2011 +0100

    Drop unneeded include.

diff --git a/libcore/vm/CallStack.cpp b/libcore/vm/CallStack.cpp
index 933cb11..d85ca4c 100644
--- a/libcore/vm/CallStack.cpp
+++ b/libcore/vm/CallStack.cpp
@@ -22,7 +22,6 @@
 
 #include "as_object.h"
 #include "UserFunction.h" 
-#include "Global_as.h" 
 #include "Property.h"
 #include "log.h"
 

-----------------------------------------------------------------------

Summary of changes:
 libcore/vm/CallStack.cpp  |    1 -
 libmedia/MediaHandler.cpp |    2 +-
 libmedia/MediaHandler.h   |    2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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